diff options
author | Brett Chabot <brettchabot@google.com> | 2009-06-12 15:30:55 -0700 |
---|---|---|
committer | Brett Chabot <brettchabot@google.com> | 2009-06-15 19:25:48 -0700 |
commit | 06ebcf93aa33b86a2380cba43c21e73d220a0517 (patch) | |
tree | dfc2949b1e8d71ad18c52ebe474b660a8bb099be /ddms/libs/ddmlib/tests | |
parent | c72990965751f79b5b6d2e7542f4092df5d70b6d (diff) | |
download | sdk-06ebcf93aa33b86a2380cba43c21e73d220a0517.zip sdk-06ebcf93aa33b86a2380cba43c21e73d220a0517.tar.gz sdk-06ebcf93aa33b86a2380cba43c21e73d220a0517.tar.bz2 |
Move package installation logic from ADT to ddmlib.
Diffstat (limited to 'ddms/libs/ddmlib/tests')
-rw-r--r-- | ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/RemoteAndroidTestRunnerTest.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/RemoteAndroidTestRunnerTest.java b/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/RemoteAndroidTestRunnerTest.java index 04b42cc..29ec9fe 100644 --- a/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/RemoteAndroidTestRunnerTest.java +++ b/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/RemoteAndroidTestRunnerTest.java @@ -220,6 +220,30 @@ public class RemoteAndroidTestRunnerTest extends TestCase { return ""; } + public String installPackage(String packageFilePath, boolean reinstall) + throws IOException { + throw new UnsupportedOperationException(); + } + + public String uninstallPackage(String packageName) throws IOException { + throw new UnsupportedOperationException(); + } + + public String installRemotePackage(String remoteFilePath, + boolean reinstall) throws IOException { + throw new UnsupportedOperationException(); + } + + public void removeRemotePackage(String remoteFilePath) + throws IOException { + throw new UnsupportedOperationException(); + } + + public String syncPackageToDevice(String localFilePath) + throws IOException { + throw new UnsupportedOperationException(); + } + } /** |