OnJava8-Examples/annotations/HashSetTest.java
Bruce Eckel fda0e2dee6 Checkstyle and Findbugs changes
Also changed comment callouts from // (1) to // [1]
2016-11-21 12:37:57 -08:00

34 lines
818 B
Java

// annotations/HashSetTest.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
// {java onjava.atunit.AtUnit
// build/classes/main/annotations/HashSetTest.class}
package annotations;
import java.util.*;
import onjava.atunit.*;
import onjava.*;
public class HashSetTest {
HashSet<String> testObject = new HashSet<>();
@Test void initialization() {
assert testObject.isEmpty();
}
@Test void tContains() {
testObject.add("one");
assert testObject.contains("one");
}
@Test void tRemove() {
testObject.add("one");
testObject.remove("one");
assert testObject.isEmpty();
}
}
/* Output:
annotations.HashSetTest
. tRemove
. tContains
. initialization
OK (3 tests)
*/