Home | History | Annotate | Download | only in testers

Lines Matching full:tostring

31  * A generic JUnit test which tests {@code toString()} operations on a
41 assertNotNull("toString() should not return null",
42 collection.toString());
48 assertEquals("emptyCollection.toString should return []", "[]",
49 collection.toString());
55 assertEquals("size1Collection.toString should return [{element}]",
56 "[" + samples.e0 + "]", collection.toString());
63 String expected = Helpers.copyToList(getOrderedElements()).toString();
64 assertEquals("collection.toString() incorrect",
65 expected, collection.toString());