proto-doc

This commit is contained in:
Leandro Afonso
2025-10-21 23:00:40 +01:00
parent 1c033880e7
commit a7c17ca9b9
15 changed files with 1238 additions and 306 deletions

View File

@@ -1,5 +1,3 @@
package sd;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -104,7 +102,7 @@ class SimulationTest {
// Check that intersections have traffic lights
for (Intersection intersection : engine.getIntersections().values()) {
assertEquals(4, intersection.getTrafficLights().size()); // North, South, East, West
assertEquals(3, intersection.getTrafficLights().size()); // North, South, East, West
}
}