--- jsr166/src/test/tck/AtomicLongTest.java 2009/11/16 04:57:10 1.12 +++ jsr166/src/test/tck/AtomicLongTest.java 2009/11/16 05:30:07 1.13 @@ -21,7 +21,7 @@ public class AtomicLongTest extends JSR1 /** * constructor initializes to given value */ - public void testConstructor(){ + public void testConstructor() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.get()); } @@ -29,7 +29,7 @@ public class AtomicLongTest extends JSR1 /** * default constructed initializes to zero */ - public void testConstructor2(){ + public void testConstructor2() { AtomicLong ai = new AtomicLong(); assertEquals(0,ai.get()); } @@ -37,7 +37,7 @@ public class AtomicLongTest extends JSR1 /** * get returns the last value set */ - public void testGetSet(){ + public void testGetSet() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.get()); ai.set(2); @@ -50,7 +50,7 @@ public class AtomicLongTest extends JSR1 /** * get returns the last value lazySet in same thread */ - public void testGetLazySet(){ + public void testGetLazySet() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.get()); ai.lazySet(2); @@ -63,7 +63,7 @@ public class AtomicLongTest extends JSR1 /** * compareAndSet succeeds in changing value if equal to expected else fails */ - public void testCompareAndSet(){ + public void testCompareAndSet() { AtomicLong ai = new AtomicLong(1); assertTrue(ai.compareAndSet(1,2)); assertTrue(ai.compareAndSet(2,-4)); @@ -100,7 +100,7 @@ public class AtomicLongTest extends JSR1 * repeated weakCompareAndSet succeeds in changing value when equal * to expected */ - public void testWeakCompareAndSet(){ + public void testWeakCompareAndSet() { AtomicLong ai = new AtomicLong(1); while (!ai.weakCompareAndSet(1,2)); while (!ai.weakCompareAndSet(2,-4)); @@ -112,7 +112,7 @@ public class AtomicLongTest extends JSR1 /** * getAndSet returns previous value and sets to given value */ - public void testGetAndSet(){ + public void testGetAndSet() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.getAndSet(0)); assertEquals(0,ai.getAndSet(-10)); @@ -122,7 +122,7 @@ public class AtomicLongTest extends JSR1 /** * getAndAdd returns previous value and adds given value */ - public void testGetAndAdd(){ + public void testGetAndAdd() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.getAndAdd(2)); assertEquals(3,ai.get()); @@ -133,7 +133,7 @@ public class AtomicLongTest extends JSR1 /** * getAndDecrement returns previous value and decrements */ - public void testGetAndDecrement(){ + public void testGetAndDecrement() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.getAndDecrement()); assertEquals(0,ai.getAndDecrement()); @@ -143,7 +143,7 @@ public class AtomicLongTest extends JSR1 /** * getAndIncrement returns previous value and increments */ - public void testGetAndIncrement(){ + public void testGetAndIncrement() { AtomicLong ai = new AtomicLong(1); assertEquals(1,ai.getAndIncrement()); assertEquals(2,ai.get()); @@ -157,7 +157,7 @@ public class AtomicLongTest extends JSR1 /** * addAndGet adds given value to current, and returns current value */ - public void testAddAndGet(){ + public void testAddAndGet() { AtomicLong ai = new AtomicLong(1); assertEquals(3,ai.addAndGet(2)); assertEquals(3,ai.get()); @@ -168,7 +168,7 @@ public class AtomicLongTest extends JSR1 /** * decrementAndGet decrements and returns current value */ - public void testDecrementAndGet(){ + public void testDecrementAndGet() { AtomicLong ai = new AtomicLong(1); assertEquals(0,ai.decrementAndGet()); assertEquals(-1,ai.decrementAndGet()); @@ -179,7 +179,7 @@ public class AtomicLongTest extends JSR1 /** * incrementAndGet increments and returns current value */ - public void testIncrementAndGet(){ + public void testIncrementAndGet() { AtomicLong ai = new AtomicLong(1); assertEquals(2,ai.incrementAndGet()); assertEquals(2,ai.get()); @@ -207,7 +207,7 @@ public class AtomicLongTest extends JSR1 ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin)); AtomicLong r = (AtomicLong) in.readObject(); assertEquals(l.get(), r.get()); - } catch (Exception e){ + } catch (Exception e) { unexpectedException(); } }