public void testString() {
   String string = NativeResources.getString(SAMPLE_STRING_NAME);
   assertNotNull(string);
   String stringWithArgs = NativeResources.getString(SAMPLE_STRING_NAME, new Object[] {});
   assertNotNull(stringWithArgs);
 }