1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 16:00:51 -07:00

added complete tests

This commit is contained in:
guywithnose 2012-01-30 10:15:05 -05:00
parent fd0d1156d4
commit 48dccd91e7
20 changed files with 8871 additions and 935 deletions

21
tests/TestSuite.java Normal file
View file

@ -0,0 +1,21 @@
/*
* File: TestSuite.java Author: JSON.org
*/
package org.json.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* The Class techTreeSuite.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses(
{ TestCDL.class, TestCookie.class, TestCookieList.class, TestHTTP.class,
TestHTTPTokener.class, TestJSONArray.class, TestJSONException.class,
TestJSONML.class, TestJSONObject.class, TestJSONStringer.class,TestJSONTokener.class,
TestJSONWriter.class, TestXML.class, TestXMLTokener.class })
public class TestSuite
{
// Do Nothing
}