maia_modificado/.svn/pristine/3b/3b615d487c731b6b62e6fe923f4...

18 lines
447 B
Plaintext
Executable File

package test.com.fp.common;
import java.util.Locale;
import junit.framework.TestCase;
public class InternationalitationTest extends TestCase{
@SuppressWarnings("unused")
public void testEnglish(){
Locale[] loc=Locale.getAvailableLocales();
for (Locale locale :loc ) {
//System.out.println("insert into tlanguage (clanguage,name) values('"+ locale.getLanguage()+"','"+locale.getDisplayLanguage()+"');");
}
}
}