X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fobserver%2FObservableTest.java;h=a985d433f96a0aa07cb466af1c7564e66c89afb5;hb=HEAD;hp=5a9d2ecb76f4b8b29591aedbdc4da5f97aa376ec;hpb=ddd261f331280640c5b53c7128230b629ebcd268;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..a985d433 100644 --- a/support/general/src/test/java/org/wamblee/observer/ObservableTest.java +++ b/support/general/src/test/java/org/wamblee/observer/ObservableTest.java @@ -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(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);