diff --git a/.gitignore b/.gitignore index 6aa6197..e37b44d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,3 @@ -Generated by tests -/foobar.md -/xyz -screenshot.png - - ################ # IntelliJ # ################ diff --git a/test/se/vidstige/jadb/test/RealDeviceTestCases.java b/test/se/vidstige/jadb/test/RealDeviceTestCases.java index 64687a7..afd3b36 100644 --- a/test/se/vidstige/jadb/test/RealDeviceTestCases.java +++ b/test/se/vidstige/jadb/test/RealDeviceTestCases.java @@ -76,15 +76,15 @@ public class RealDeviceTestCases { @Test public void testPullFile() throws Exception { JadbDevice any = jadb.getAnyDevice(); - any.pull(new RemoteFile("/sdcard/README.md"), new File("foobar.md")); + any.pull(new RemoteFile("/sdcard/README.md"), new File("out/foobar.md")); //second read on the same device - any.pull(new RemoteFile("/sdcard/README.md"), new File("foobar.md")); + any.pull(new RemoteFile("/sdcard/README.md"), new File("out/foobar.md")); } @Test(expected = JadbException.class) public void testPullInvalidFile() throws Exception { JadbDevice any = jadb.getAnyDevice(); - any.pull(new RemoteFile("/file/does/not/exist"), new File("xyz")); + any.pull(new RemoteFile("/file/does/not/exist"), new File("out/xyz")); } @Test @@ -99,7 +99,7 @@ public class RealDeviceTestCases { JadbDevice any = jadb.getAnyDevice(); FileOutputStream outputStream = null; try { - outputStream = new FileOutputStream(new File("screenshot.png")); + outputStream = new FileOutputStream(new File("out/screenshot.png")); InputStream stdout = any.executeShell("screencap", "-p"); Stream.copy(stdout, outputStream); } finally {