Skip to content

Commit

Permalink
full install copies bots over
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Dec 5, 2023
1 parent a0e79da commit 3f763dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/myrobotlab/service/ProgramABTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static void setUpClass() {
pikachu = (ProgramAB) Runtime.start(PIKACHU, "ProgramAB");

// very first inits - all should work !
assertEquals("4 standard", 4, lloyd.getBots().size());
assertTrue("4+ standard", lloyd.getBots().size() >= 4);
// should require very little to start ! - this is a requirement !
Response response = lloyd.getResponse("Hi");

Expand Down Expand Up @@ -79,8 +79,8 @@ public void setUp() {

// add a couple test bots
List<File> bots = lloyd.scanForBots(testResources + "/bots");
assertEquals("2 test bots", bots.size(), 2);
assertEquals("6 bots total", 6, lloyd.getBots().size());
assertTrue("2+ test bots", bots.size() >= 2);
assertTrue("6+ bots total", lloyd.getBots().size() >= 6);

pikachu.scanForBots(testResources + "/bots");

Expand Down

0 comments on commit 3f763dc

Please sign in to comment.