refactor test classes to their own modules

This commit is contained in:
stleary
2015-12-29 17:56:43 -06:00
parent c6204a9f01
commit 7f83a51718
5 changed files with 55 additions and 45 deletions

16
MyBean.java Normal file
View File

@@ -0,0 +1,16 @@
package org.json.junit;
import java.io.*;
/**
* Used in testing when Bean behavior is needed
*/
interface MyBean {
public Integer getIntKey();
public Double getDoubleKey();
public String getStringKey();
public String getEscapeStringKey();
public Boolean isTrueKey();
public Boolean isFalseKey();
public StringReader getStringReaderKey();
}