Skip to content

Commit

Permalink
Removed checkDeployment test
Browse files Browse the repository at this point in the history
  • Loading branch information
arminzavada committed Nov 4, 2024
1 parent 6be0e99 commit 5c1e941
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,4 @@ void testConnections() {
);
}

@Test
@DisplayName("Basic test for checkDeployment")
void testCheckDeployment() {
deployment.deployComputers(cps);

var dummyCps = new CPS();

Assertions.assertAll(
() -> Assertions.assertTrue(deployment.checkDeployment(cps), "Deployment should be fine for used CPS"),
() -> Assertions.assertFalse(deployment.checkDeployment(dummyCps), "Deployment should not be fine for dummy CPS")
);

}

}

0 comments on commit 5c1e941

Please sign in to comment.