Home
last modified time | relevance | path

Searched refs:FakeTvProviderForTesting (Results 1 – 1 of 1) sorted by relevance

/packages/apps/TV/tests/robotests/src/com/android/tv/util/
DTvProviderUtilsTest.java51 Robolectric.buildContentProvider(FakeTvProviderForTesting.class).create(info).get(); in setUp()
95 FakeTvProviderForTesting.mThrowException = false; in testGetExistingColumns_noException()
96 FakeTvProviderForTesting.mBundleResult = new Bundle(); in testGetExistingColumns_noException()
97 FakeTvProviderForTesting.mBundleResult.putStringArray( in testGetExistingColumns_noException()
107 FakeTvProviderForTesting.mThrowException = true; in testGetExistingColumns_throwsException()
108 FakeTvProviderForTesting.mBundleResult = new Bundle(); in testGetExistingColumns_throwsException()
116 private static class FakeTvProviderForTesting extends FakeTvProvider { class in TvProviderUtilsTest