Home
last modified time | relevance | path

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

/cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
DSplitAppTest.java99 assertAssetContents(r, "file1.txt", "FILE1"); in testSingleBase()
100 assertAssetContents(r, "dir/dirfile1.txt", "DIRFILE1"); in testSingleBase()
103 assertAssetContents(r, "file2.txt", null); in testSingleBase()
248 assertAssetContents(r, "file1.txt", "FILE1"); in testFeatureBase()
249 assertAssetContents(r, "file2.txt", "FILE2"); in testFeatureBase()
250 assertAssetContents(r, "dir/dirfile1.txt", "DIRFILE1"); in testFeatureBase()
251 assertAssetContents(r, "dir/dirfile2.txt", "DIRFILE2"); in testFeatureBase()
527 private static void assertAssetContents(Resources r, String path, String expected) in assertAssetContents() method in SplitAppTest