mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
13 lines
No EOL
252 B
Java
13 lines
No EOL
252 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,
|
|
PropertyTest.class,
|
|
XMLTest.class
|
|
})
|
|
public class JunitTestSuite {
|
|
} |