mirror of
https://github.com/stleary/JSON-java.git
synced 2026-01-25 00:00:38 -05:00
added complete tests
This commit is contained in:
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?" },
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user