summaryrefslogtreecommitdiff
path: root/src/test/java/au/id/zancanaro/TheoriesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/au/id/zancanaro/TheoriesTest.java')
-rw-r--r--src/test/java/au/id/zancanaro/TheoriesTest.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/java/au/id/zancanaro/TheoriesTest.java b/src/test/java/au/id/zancanaro/TheoriesTest.java
deleted file mode 100644
index 7d5071c..0000000
--- a/src/test/java/au/id/zancanaro/TheoriesTest.java
+++ /dev/null
@@ -1,22 +0,0 @@
-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);
- }
-}