Guest User

Untitled

a guest
Sep 13th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. class AbstractClassTest {
  2.   // should have for each test a different implementation of the AbstractClass
  3.   AbstractClass abstractClass;
  4.  
  5.   @Test
  6.   void methodOne() {
  7.     // should be run for each implementer of AbstractClass
  8.   }
  9.  
  10.   @ParameterizedTest
  11.   @MethodSource
  12.   void methodTwo(Parameter parameter) {
  13.     // should be run with each implementer of AbstractClass
  14.     // each implementer of abstract class should then be run with each parameter from the method source
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment