package au.id.zancanaro; import org.junit.Assert; import org.junit.Test; import org.junit.experimental.theories.DataPoint; import org.junit.experimental.theories.Theories; import org.junit.experimental.theories.Theory; import org.junit.runner.RunWith; @RunWith(Theories.class) public class TheoriesTest { @DataPoint public static String car = "carlo"; @DataPoint public static String car2 = "carlo2"; @Theory public void testName(String str) throws Exception { Assert.assertEquals(str, car2); } }