(no commit message)
[utils] / support / general / src / test / java / org / wamblee / observer / ObservableTest.java
index 5a9d2ecb76f4b8b29591aedbdc4da5f97aa376ec..a985d433f96a0aa07cb466af1c7564e66c89afb5 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright 2005 the original author or authors.
- *
+ * Copyright 2005-2010 the original author or authors.
+ * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- *
+ * 
  *      http://www.apache.org/licenses/LICENSE-2.0
- *
+ * 
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,10 +23,9 @@ import static org.mockito.Mockito.*;
 import java.util.ArrayList;
 import java.util.List;
 
-
 /**
  * Test of the observer pattern implementation.
- *
+ * 
  * @author Erik Brakkee
  */
 public class ObservableTest extends TestCase {
@@ -37,15 +36,15 @@ public class ObservableTest extends TestCase {
 
     /*
      * (non-Javadoc)
-     *
+     * 
      * @see junit.framework.TestCase#setUp()
      */
     @Override
     protected void setUp() throws Exception {
         super.setUp();
-        observed = new Integer(1);
+        observed = Integer.valueOf(1);
         observable = new Observable<Integer, String>(observed,
-                new DefaultObserverNotifier());
+            new DefaultObserverNotifier());
     }
 
     /**
@@ -125,7 +124,7 @@ public class ObservableTest extends TestCase {
     /**
      * Subscribes and then unsubscribes with a wrong id. Verifies that
      * IllegalArgumentException is thrown.
-     *
+     * 
      */
     public void testUnsubscribeWithWrongSubscription() {
         Observer<Integer, String> observer = mock(Observer.class);