Home
last modified time | relevance | path

Searched defs:expectedCmd (Results 1 – 1 of 1) sorted by relevance

/sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
DRemoteAndroidTestRunnerTest.java56 String expectedCmd = EasyMock.eq(String.format("am instrument -w -r %s/%s", TEST_PACKAGE, in testRun() local
66 String expectedCmd = EasyMock.contains("-e log true"); in testRun_withLog() local
77 String expectedCmd = EasyMock.contains(String.format("-e class %s#%s", className, in testRun_withMethod() local
88 String expectedCmd = EasyMock.contains(String.format("-e package %s", packageName)); in testRun_withPackage() local
99 String expectedCmd = EasyMock.contains(String.format("-e %s %s", extraArgName, in testRun_withAddInstrumentationArg() local
131 private void runAndVerify(String expectedCmd) throws Exception { in runAndVerify()