package devmanuals.junit; import org.junit.*; import static org.junit.Assert.*; import java.util.*; public class SimpleTest { @Test public void testEmptyCollection() { Collection collection = new ArrayList(); assertTrue(collection.isEmpty()); } }