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