aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/cyanogenmod/explorer/commands/shell/ExecCommandTest.java3
-rw-r--r--tests/src/com/cyanogenmod/explorer/commands/shell/FindCommandTest.java3
-rw-r--r--tests/src/com/cyanogenmod/explorer/commands/shell/FolderUsageCommandTest.java3
-rw-r--r--tests/src/com/cyanogenmod/explorer/commands/shell/ReadCommandTest.java3
-rw-r--r--tests/src/com/cyanogenmod/explorer/commands/shell/WriteCommandTest.java2
5 files changed, 14 insertions, 0 deletions
diff --git a/tests/src/com/cyanogenmod/explorer/commands/shell/ExecCommandTest.java b/tests/src/com/cyanogenmod/explorer/commands/shell/ExecCommandTest.java
index 580288f4..bc622620 100644
--- a/tests/src/com/cyanogenmod/explorer/commands/shell/ExecCommandTest.java
+++ b/tests/src/com/cyanogenmod/explorer/commands/shell/ExecCommandTest.java
@@ -89,6 +89,9 @@ public class ExecCommandTest extends AbstractConsoleTest {
ExecCommandTest.this.mSync.notify();
}
}
+ public void onAsyncExitCode(int exitCode) {
+ /**NON BLOCK**/
+ }
public void onException(Exception cause) {
fail(String.valueOf(cause));
}
diff --git a/tests/src/com/cyanogenmod/explorer/commands/shell/FindCommandTest.java b/tests/src/com/cyanogenmod/explorer/commands/shell/FindCommandTest.java
index ec24076f..668d7da8 100644
--- a/tests/src/com/cyanogenmod/explorer/commands/shell/FindCommandTest.java
+++ b/tests/src/com/cyanogenmod/explorer/commands/shell/FindCommandTest.java
@@ -82,6 +82,9 @@ public class FindCommandTest extends AbstractConsoleTest {
FindCommandTest.this.mSync.notify();
}
}
+ public void onAsyncExitCode(int exitCode) {
+ /**NON BLOCK**/
+ }
public void onException(Exception cause) {
fail(String.valueOf(cause));
}
diff --git a/tests/src/com/cyanogenmod/explorer/commands/shell/FolderUsageCommandTest.java b/tests/src/com/cyanogenmod/explorer/commands/shell/FolderUsageCommandTest.java
index 018fa537..0162f0bf 100644
--- a/tests/src/com/cyanogenmod/explorer/commands/shell/FolderUsageCommandTest.java
+++ b/tests/src/com/cyanogenmod/explorer/commands/shell/FolderUsageCommandTest.java
@@ -84,6 +84,9 @@ public class FolderUsageCommandTest extends AbstractConsoleTest {
FolderUsageCommandTest.this.mSync.notify();
}
}
+ public void onAsyncExitCode(int exitCode) {
+ /**NON BLOCK**/
+ }
public void onException(Exception cause) {
fail(String.valueOf(cause));
}
diff --git a/tests/src/com/cyanogenmod/explorer/commands/shell/ReadCommandTest.java b/tests/src/com/cyanogenmod/explorer/commands/shell/ReadCommandTest.java
index bb54aa0f..6d209843 100644
--- a/tests/src/com/cyanogenmod/explorer/commands/shell/ReadCommandTest.java
+++ b/tests/src/com/cyanogenmod/explorer/commands/shell/ReadCommandTest.java
@@ -77,6 +77,9 @@ public class ReadCommandTest extends AbstractConsoleTest {
ReadCommandTest.this.mSync.notify();
}
}
+ public void onAsyncExitCode(int exitCode) {
+ /**NON BLOCK**/
+ }
public void onException(Exception cause) {
fail(String.valueOf(cause));
}
diff --git a/tests/src/com/cyanogenmod/explorer/commands/shell/WriteCommandTest.java b/tests/src/com/cyanogenmod/explorer/commands/shell/WriteCommandTest.java
index a0626ab9..2a12d8c8 100644
--- a/tests/src/com/cyanogenmod/explorer/commands/shell/WriteCommandTest.java
+++ b/tests/src/com/cyanogenmod/explorer/commands/shell/WriteCommandTest.java
@@ -63,6 +63,7 @@ public class WriteCommandTest extends AbstractConsoleTest {
WRITE_FILE_SMALL, new AsyncResultListener() {
public void onAsyncStart() {/**NON BLOCK**/}
public void onAsyncEnd(boolean canceled) {/**NON BLOCK**/}
+ public void onAsyncExitCode(int exitCode) {/**NON BLOCK**/}
public void onException(Exception cause) {
fail(String.valueOf(cause));
}
@@ -94,6 +95,7 @@ public class WriteCommandTest extends AbstractConsoleTest {
WRITE_FILE_LARGE, new AsyncResultListener() {
public void onAsyncStart() {/**NON BLOCK**/}
public void onAsyncEnd(boolean canceled) {/**NON BLOCK**/}
+ public void onAsyncExitCode(int exitCode) {/**NON BLOCK**/}
public void onException(Exception cause) {
fail(String.valueOf(cause));
}