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.java102 assertAssetContents(r, "file1.txt", "FILE1"); in testSingleBase()
103 assertAssetContents(r, "dir/dirfile1.txt", "DIRFILE1"); in testSingleBase()
106 assertAssetContents(r, "file2.txt", null); in testSingleBase()
251 assertAssetContents(r, "file1.txt", "FILE1"); in testFeatureBase()
252 assertAssetContents(r, "file2.txt", "FILE2"); in testFeatureBase()
253 assertAssetContents(r, "dir/dirfile1.txt", "DIRFILE1"); in testFeatureBase()
254 assertAssetContents(r, "dir/dirfile2.txt", "DIRFILE2"); in testFeatureBase()
574 private static void assertAssetContents(Resources r, String path, String expected) in assertAssetContents() method in SplitAppTest