Home | History | Annotate | Download | only in base

Lines Matching refs:TestClass

49     String toTest = Objects.toStringHelper(new TestClass()).toString();
50 assertEquals("TestClass{}", toTest);
54 String toTest = Objects.toStringHelper(new TestClass()).toString();
71 String toTest = Objects.toStringHelper(TestClass.class).toString();
72 assertEquals("TestClass{}", toTest);
76 String toTest = Objects.toStringHelper(TestClass.class).toString();
154 String toTest = Objects.toStringHelper(new TestClass())
157 assertEquals("TestClass{field1=Hello}", toTest);
162 String toTest = Objects.toStringHelper(new TestClass())
165 assertEquals("TestClass{field1=42}", toTest);
170 String toTest = Objects.toStringHelper(new TestClass())
173 assertEquals("TestClass{field1=null}", toTest);
177 String toTest = Objects.toStringHelper(new TestClass())
184 String toTest = Objects.toStringHelper(new TestClass())
191 String toTest = Objects.toStringHelper(new TestClass())
205 String toTest = Objects.toStringHelper(new TestClass())
210 final String expected = "TestClass{"
223 String toTest = Objects.toStringHelper(new TestClass())
237 Objects.ToStringHelper helper = Objects.toStringHelper(new TestClass());
247 final String result = Objects.toStringHelper(new TestClass())
251 assertEquals("TestClass{Hello=null}", result);
255 final String result = Objects.toStringHelper(new TestClass())
263 Objects.ToStringHelper helper = Objects.toStringHelper(new TestClass())
267 final String expected = "TestClass{field1=1, value1, field2=value2}";
274 final String expected2 = "TestClass{field1=1, value1, field2=value2, 2}";
281 String toTest = Objects.toStringHelper(new TestClass())
287 final String expected = "TestClass{field1=1, value1, field2=value2, 2}";
293 String toTest = Objects.toStringHelper(new TestClass())
306 final String result = Objects.toStringHelper(new TestClass())
311 final String expected = "TestClass{null, Hello, null}";
317 final String result = Objects.toStringHelper(new TestClass())
329 String toTest = Objects.toStringHelper(new TestClass())
333 assertEquals("TestClass{}", toTest);
338 String toTest = Objects.toStringHelper(new TestClass())
344 assertEquals("TestClass{field2=Googley, field3=World}", toTest);
349 String toTest = Objects.toStringHelper(new TestClass())
355 assertEquals("TestClass{field2=Googley, field3=World}", toTest);
360 String toTest = Objects.toStringHelper(new TestClass())
366 assertEquals("TestClass{field1=Hello, field2=Googley}", toTest);
371 String toTest = Objects.toStringHelper(new TestClass())
375 assertEquals("TestClass{}", toTest);
380 String toTest = Objects.toStringHelper(new TestClass())
386 assertEquals("TestClass{Googley, World}", toTest);
391 String toTest = Objects.toStringHelper(new TestClass())
397 assertEquals("TestClass{Hello, Googley}", toTest);
402 String expected = "TestClass{field1=Hello, field2=Googley, field3=World}";
403 String toTest1 = Objects.toStringHelper(new TestClass())
409 String toTest2 = Objects.toStringHelper(new TestClass())
421 String toTest = Objects.toStringHelper(new TestClass())
430 assertEquals("TestClass{field1=Hello, field2=Googley, field3=World}",
437 private static class TestClass {}