copyright messages updated in all java filees.
[utils] / support / general / src / test / java / org / wamblee / observer / ObservableTest.java
index 5a9d2ecb76f4b8b29591aedbdc4da5f97aa376ec..f5708dbd16c3cb0dc608a01cf51d41fb93b2ea11 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * 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.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */
+ */ 
 package org.wamblee.observer;
 
 import junit.framework.TestCase;
@@ -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,7 +36,7 @@ public class ObservableTest extends TestCase {
 
     /*
      * (non-Javadoc)
-     *
+     * 
      * @see junit.framework.TestCase#setUp()
      */
     @Override
@@ -45,7 +44,7 @@ public class ObservableTest extends TestCase {
         super.setUp();
         observed = new Integer(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);