mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-20 00:00:59 -04:00
Moves src folder to simplify build.gradle configuration. If JSON-Java source is merged, it's src fold would now be src/main/java/org.json/ instead of src/main/org.json as well.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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,
|
||||
EnumTest.class,
|
||||
JSONPointerTest.class
|
||||
})
|
||||
public class JunitTestSuite {
|
||||
}
|
||||
Reference in New Issue
Block a user