@Test
public void testStateAtFirstStep() throws IOException {
TrafficLight tl = repo.getByID("0");
TLState tlState = tl.queryReadState().get();
final LightState[] states = tlState.lightStates;
assertEquals(16, states.length);
assertArrayEquals(PHASES[0], states);
}