1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 16:00:51 -07:00

test suite and cookie test

This commit is contained in:
stleary 2015-03-18 22:39:54 -05:00
parent 4a5809910b
commit df68a7b593
3 changed files with 52 additions and 0 deletions

11
JunitTestSuite.java Normal file
View file

@ -0,0 +1,11 @@
package org.json.junit;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
CDLTest.class,
CookieTest.class
})
public class JunitTestSuite {
}