X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fobserver%2FObservableTest.java;h=f5708dbd16c3cb0dc608a01cf51d41fb93b2ea11;hb=f7fc25fbfd96a245bb09e14242107ed633d86dd8;hp=5a9d2ecb76f4b8b29591aedbdc4da5f97aa376ec;hpb=f4d446b84fa1a38ed83cd157f79fdb8233822145;p=utils diff --git a/support/general/src/test/java/org/wamblee/observer/ObservableTest.java b/support/general/src/test/java/org/wamblee/observer/ObservableTest.java index 5a9d2ecb..f5708dbd 100644 --- a/support/general/src/test/java/org/wamblee/observer/ObservableTest.java +++ b/support/general/src/test/java/org/wamblee/observer/ObservableTest.java @@ -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(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 observer = mock(Observer.class);