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

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

11
MyBigNumberBean.java Normal file
View file

@ -0,0 +1,11 @@
package org.json.junit;
import java.math.*;
/**
* Used in testing when a Bean containing big numbers is needed
*/
interface MyBigNumberBean {
public BigInteger getBigInteger();
public BigDecimal getBigDecimal();
}