use of il.ac.bgu.cs.bp.bpjs.analysis.VerificationResult in project BPjs by bThink-BGU.
the class DiningPhilTest method testCounterexampleFound.
@Test
public void testCounterexampleFound() throws InterruptedException {
VerificationResult res = verifyPhilosophers(5);
if (res.isCounterExampleFound()) {
printCounterExample(res);
} else {
System.out.println("No counterexample found.");
fail("No counterexample found for dinning philosophers.");
}
}
Aggregations