Dev/junit

[Junit] Test Assertion

냐옴 2019. 12. 23. 16:07

// junit5

import static org.junit.jupiter.api.Assertions.*;

 

// hamcrest
import static org.hamcrest.Matchers.*;
import static org.hamcrest.MatcherAssert.*;

 

// assertj
import static org.assertj.core.api.Assertions.*;