From 7e1182355d54f0dc8461ce7df7c4aca8c40d2a92 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Mon, 1 Jun 2015 00:25:19 +1000 Subject: Just some rearranging, renaming and clean-up --- src/test/java/au/id/zancanaro/TheoriesTest.java | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/test/java/au/id/zancanaro/TheoriesTest.java (limited to 'src/test/java/au/id/zancanaro/TheoriesTest.java') 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); - } -} -- cgit v1.2.3