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
28
tests/SampleResourceBundle_fr.java
Normal file
28
tests/SampleResourceBundle_fr.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* File: SampleResourceBundle_fr.java
|
||||
* Author: JSON.org
|
||||
*/
|
||||
package org.json.tests;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* The Class SampleResourceBundle_fr.
|
||||
*/
|
||||
public class SampleResourceBundle_fr extends ListResourceBundle {
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see java.util.ListResourceBundle#getContents()
|
||||
*/
|
||||
@Override
|
||||
public Object[][] getContents() {
|
||||
return contents;
|
||||
}
|
||||
|
||||
/** The contents. */
|
||||
private Object[][] contents = {
|
||||
{ "ASCII", "Number that represent chraracters" },
|
||||
{ "JAVA", "The language you are running to see this" },
|
||||
{ "JSON", "What are we testing?" },
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue