080. Annotations for Unit Test and Integration Test - dkkahm/study-springfamework5 GitHub Wiki
Unit Test
class CategoryTest {
Category category;
@BeforeEach
public void setUp() {
category = new Category();
}
@Test
void getId() {
Long idValue = 4L;
category.setId(idValue);
assertEquals(idValue, category.getId());
}
....
}
Integration Test
@RunWith(SpringRunner.class)
@SpringBootTest
public class Spring5RecipeApplicationTests {