Merge "Fix KeySpecParserSplitTests"

main
Tadashi G. Takaoka 2013-07-23 10:33:30 +00:00 committed by Android (Google) Code Review
commit 01c2bb1303
2 changed files with 7 additions and 3 deletions

View File

@ -0,0 +1,3 @@
/* This dummy raw resource is needed to be able to load string resources from a test APK
* successfully. (See {@link KeySpecParserSplitTests#setUp()}.
*/

View File

@ -51,9 +51,10 @@ public class KeySpecParserSplitTests extends InstrumentationTestCase {
}.runInLocale(targetContext.getResources(), TEST_LOCALE);
final String[] testResourceNames = getAllResourceIdNames(
com.android.inputmethod.latin.tests.R.string.class);
mTextsSet.loadStringResourcesInternal(instrumentation.getContext(),
testResourceNames,
com.android.inputmethod.latin.tests.R.string.empty_string);
mTextsSet.loadStringResourcesInternal(instrumentation.getContext(), testResourceNames,
// This dummy raw resource is needed to be able to load string resources from a test
// APK successfully.
com.android.inputmethod.latin.tests.R.raw.dummy_resource_for_testing);
}
private static String[] getAllResourceIdNames(final Class<?> resourceIdClass) {