mirror of
https://github.com/revanced/jadb.git
synced 2025-06-12 13:17:39 +02:00
Refactor: Putting test output in out/
directory.
To avoid cluttering the repo root.
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user