mirror of
https://github.com/revanced/jadb.git
synced 2025-06-12 13:17:39 +02:00
_Tries_ to start adb server, does not bail out if not possible.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user