mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
21 lines
576 B
Java
21 lines
576 B
Java
/*
|
|
* 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
|
|
}
|