HomeSort by relevance Sort by last modified time
    Searched refs:nativeTestPath (Results 1 - 2 of 2) sorted by null

  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
GoogleBenchmarkTestTest.java 90 final String nativeTestPath = GoogleBenchmarkTest.DEFAULT_TEST_PATH;
93 MockFileUtil.setMockDirContents(mMockITestDevice, nativeTestPath, test1, test2);
94 EasyMock.expect(mMockITestDevice.doesFileExist(nativeTestPath)).andReturn(true);
95 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath)).andReturn(true);
96 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath + "/test1")).andReturn(false);
97 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath + "/test2")).andReturn(false);
99 EasyMock.expect(mMockITestDevice.getChildren(nativeTestPath)).andReturn(files);
153 final String nativeTestPath =
158 MockFileUtil.setMockDirContents(mMockITestDevice, nativeTestPath, test1, test2);
159 EasyMock.expect(mMockITestDevice.doesFileExist(nativeTestPath)).andReturn(true)
    [all...]
GTestTest.java 119 final String nativeTestPath = GTest.DEFAULT_NATIVETEST_PATH;
122 final String testPath1 = String.format("%s/%s", nativeTestPath, test1);
123 final String testPath2 = String.format("%s/%s", nativeTestPath, test2);
125 MockFileUtil.setMockDirContents(mMockITestDevice, nativeTestPath, test1, test2);
126 EasyMock.expect(mMockITestDevice.doesFileExist(nativeTestPath)).andReturn(true);
127 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath)).andReturn(true);
128 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath + "/test1")).andReturn(false);
132 EasyMock.expect(mMockITestDevice.isDirectory(nativeTestPath + "/test2")).andReturn(false);
136 EasyMock.expect(mMockITestDevice.getChildren(nativeTestPath)).andReturn(files);
178 final String nativeTestPath = GTest.DEFAULT_NATIVETEST_PATH
    [all...]

Completed in 889 milliseconds