elvyssoares

Assertion Roullete - Original - Toy Example

Jun 10th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. private MyClass c;
  2. @Before
  3. public void setup() {
  4.     c = new MyClass();
  5. }
  6. @Test
  7. public void test() {
  8.     assertTrue(c.isA());
  9.     assertTrue(c.isB());
  10.     assertTrue(c.isC());
  11. }
Advertisement
Add Comment
Please, Sign In to add comment