Fix tests
This commit is contained in:
parent
36b5d6581d
commit
09d2b9a3fb
@ -2,6 +2,7 @@ package de.szut.lf8_starter.integration.project;
|
||||
|
||||
import de.szut.lf8_starter.project.ProjectEntity;
|
||||
import de.szut.lf8_starter.project.ProjectRepository;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
|
||||
@ -24,6 +25,11 @@ class GetProjectActionTest {
|
||||
@Autowired
|
||||
private ProjectRepository projectRepository;
|
||||
|
||||
@BeforeEach
|
||||
void setUp() {
|
||||
this.projectRepository.deleteAll();
|
||||
}
|
||||
|
||||
@Test
|
||||
void getProjectTest() throws Exception {
|
||||
var project = new ProjectEntity();
|
||||
|
Loading…
Reference in New Issue
Block a user