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

Adds tests for numbers

This commit is contained in:
John J. Aylward 2016-08-16 19:45:26 -04:00
parent c400de3cfe
commit bbd3fd5571
4 changed files with 341 additions and 2 deletions

View file

@ -0,0 +1,13 @@
package org.json.junit;
/**
* Class that holds our MyNumber override as a property.
* @author John Aylward
*/
public class MyNumberContainer {
private MyNumber myNumber = new MyNumber();
/**
* @return a MyNumber.
*/
public Number getMyNumber() {return this.myNumber;}
}