mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-07 11:10:08 +08:00
added complete tests
This commit is contained in:
21
tests/TestSuite.java
Normal file
21
tests/TestSuite.java
Normal 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
|
||||
}
|
Reference in New Issue
Block a user