Hi, thank you for the project.
In c4_LifecycleHooks line 78,
@Test
public void atomic_counter() {
AtomicInteger counter = new AtomicInteger(0);
...
//I think wrong order.
Assertions.assertEquals(counter.get(), 20);
}
it change to
Assertions.assertEquals(20, counter.get());
because 20 is expected value.
thank you.
Hi, thank you for the project.
In c4_LifecycleHooks line 78,
it change to
because 20 is expected value.
thank you.