From 199037f9c80afd885f1f536d91b40a8397cd6bf2 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Sun, 31 May 2015 16:48:45 +1000 Subject: Improve lots of things In particular: + make output more sane and less all over the place + just ignore original exception, the shrunk one is the only one which really matters + fit into the jUnit framework more (so now @Before, @After and stuff work) --- src/test/java/au/id/zancanaro/TheoriesTest.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create 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 new file mode 100644 index 0000000..7d5071c --- /dev/null +++ b/src/test/java/au/id/zancanaro/TheoriesTest.java @@ -0,0 +1,22 @@ +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