mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 16:00:51 -07:00
added complete tests
This commit is contained in:
parent
fd0d1156d4
commit
48dccd91e7
20 changed files with 8871 additions and 935 deletions
29
tests/SampleResourceBundle_en_US.java
Normal file
29
tests/SampleResourceBundle_en_US.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* File: SampleResourceBundle_en_US.java
|
||||
* Author: JSON.org
|
||||
*/
|
||||
package org.json.tests;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* The Class SampleResourceBundle_en_US.
|
||||
*/
|
||||
public class SampleResourceBundle_en_US extends ListResourceBundle {
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see java.util.ListResourceBundle#getContents()
|
||||
*/
|
||||
@Override
|
||||
public Object[][] getContents() {
|
||||
return contents;
|
||||
}
|
||||
|
||||
/** The contents. */
|
||||
private Object[][] contents = {
|
||||
{ "ASCII", "American Standard Code for Information Interchange" },
|
||||
{ "JAVA.desc", "Just Another Vague Acronym" },
|
||||
{ "JAVA.data", "Sweet language" },
|
||||
{ "JSON", "JavaScript Object Notation" },
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue