Assert.assertNotNull(r4);
Assert.assertTrue(r4 instanceof TestResourceInterface);
Assert.assertFalse(r4.equals(r3));
// parameter values for which no resource exists (should fail)
ResourceAccessException ex = null;
try {
mContext.getResourceObject("TestFileLanguageResource", new String[] { "zh" });
} catch (ResourceAccessException e) {
ex = e;
}