Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@SpringBootTest
@ActiveProfiles("test")
@ContextConfiguration(classes = ToggleManagerApplication.class)
public class ReportTest {
class ReportTest {

@Test
@DisplayName("tata")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
@SpringBootTest
@ActiveProfiles("test")
@ContextConfiguration(classes = ToggleManagerApplication.class)
public class ToggleServiceTest {
class ToggleServiceTest {

@Autowired
private ToggleService toggleService;
Expand All @@ -65,7 +65,7 @@ static void registerPgProperties(DynamicPropertyRegistry propertiesRegistry) {
}

@BeforeEach
public void setup() throws Exception {
void setup() throws Exception {
MockitoAnnotations.openMocks(this).close();
emailService.setEmailSender(emailSender);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
package fr.ans.psc.toggle.service;

import fr.ans.psc.toggle.ToggleManagerApplication;
import fr.ans.psc.toggle.controller.ToggleController;
import fr.ans.psc.toggle.exception.ToggleFileParsingException;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
Expand All @@ -38,7 +37,7 @@
@SpringBootTest
@ActiveProfiles("test")
@ContextConfiguration(classes = ToggleManagerApplication.class)
public class UploadToggleFileTest {
class UploadToggleFileTest {

@Autowired
private ToggleService toggleService;
Expand Down