mirror of
https://github.com/revanced/jadb.git
synced 2025-05-22 19:08:52 +02:00
_Tries_ to start adb server, does not bail out if not possible.
This commit is contained in:
parent
6c1835cc11
commit
d8445e8cb2
@ -15,8 +15,14 @@ public class RealDeviceTestCases {
|
||||
private JadbConnection jadb;
|
||||
|
||||
@BeforeClass
|
||||
public static void tryToStartAdbServer() throws IOException, InterruptedException {
|
||||
new AdbServerLauncher().launch();
|
||||
public static void tryToStartAdbServer() {
|
||||
try {
|
||||
new AdbServerLauncher().launch();
|
||||
} catch (IOException e) {
|
||||
System.out.println("Could not start adb-server");
|
||||
} catch (InterruptedException e) {
|
||||
System.out.println("Could not start adb-server");
|
||||
}
|
||||
}
|
||||
|
||||
@Before
|
||||
|
Loading…
x
Reference in New Issue
Block a user