Tag: JUnit

  • JUnit Theory Tests

    A Theory JUnit test is a subset of the Parameterized JUnit test feature. It is very similar in respects to driving tests with a set of test data, except with a few differences as explained below. The test class is annotated with @RunWith(Theories.class) The test does not require a constructor to assign values, which reduces […]