mirror of
https://github.com/fankes/JSON-java-compat.git
synced 2025-09-06 10:45:23 +08:00
19 lines
393 B
Java
19 lines
393 B
Java
package org.json.junit;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
@RunWith(Suite.class)
|
|
@Suite.SuiteClasses({
|
|
CDLTest.class,
|
|
CookieTest.class,
|
|
CookieListTest.class,
|
|
PropertyTest.class,
|
|
XMLTest.class,
|
|
JSONMLTest.class,
|
|
HTTPTest.class,
|
|
JSONStringerTest.class,
|
|
JSONObjectTest.class,
|
|
JSONArrayTest.class
|
|
})
|
|
public class JunitTestSuite {
|
|
} |