locale tests

This commit is contained in:
stleary
2017-02-14 08:30:22 -06:00
parent df9c27c53f
commit 928179a1f3
4 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package org.json.junit;
public class MyLocaleBean {
private final String id = "beanId";
private final String i = "beanI";
public String getId() {
return id;
}
public String getI() {
return i;
}
}