Bläddra i källkod

Start adding tests for V6 Schema tester.

Sam Jaffe 6 år sedan
förälder
incheckning
edb1cf4d00

+ 13 - 0
src/test/java/org/leumasjaffe/json/schema/JsonFactorySuite.java

@@ -0,0 +1,13 @@
+package org.leumasjaffe.json.schema;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.leumasjaffe.json.schema.factory.SchemaV6FactoryTest;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+	SchemaV6FactoryTest.class
+})
+public class JsonFactorySuite {
+
+}

+ 13 - 0
src/test/java/org/leumasjaffe/json/schema/JsonSchemaSuite.java

@@ -0,0 +1,13 @@
+package org.leumasjaffe.json.schema;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+	JsonFactorySuite.class,
+	JsonTesterSuite.class
+})
+public class JsonSchemaSuite {
+
+}

+ 14 - 0
src/test/java/org/leumasjaffe/json/schema/factory/SchemaV6FactoryTest.java

@@ -0,0 +1,14 @@
+package org.leumasjaffe.json.schema.factory;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class SchemaV6FactoryTest {
+
+	@Test
+	public void test() {
+		fail("Not yet implemented");
+	}
+
+}