Switched to some level of assertions for now

This commit is contained in:
2024-08-29 00:00:19 -04:00
parent 14af237c02
commit ac58646d78

View File

@@ -18,6 +18,7 @@ public class UnifiTests {
Unifi unifi = new Unifi("https://api.ui.com/ea", System.getenv("UNIFI_KEY"));
response = unifi.getHosts();
System.out.println(response);
assert !response.isEmpty();
}
@@ -34,5 +35,6 @@ public class UnifiTests {
assert false;
}
System.out.println(response);
assert !response.isEmpty();
}
}