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 @@ -206,7 +206,7 @@ void serializationTest() throws Exception {
* @throws DuplicateKeyException the duplicate key exception
*/
@Test
public void readRegistrySerFile() throws IOException, DuplicateKeyException {
void readRegistrySerFile() throws IOException, DuplicateKeyException {
File registryFile = new File(rootpath + File.separator + "registry.ser");
if(registryFile.exists()) {
registryFile.delete();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@DirtiesContext
@SpringBootTest
@ContextConfiguration(classes = PscloadApplication.class)
public class RegistryDeserializationTest {
class RegistryDeserializationTest {

private static Kryo kryo;

Expand Down Expand Up @@ -86,7 +86,7 @@ public class RegistryDeserializationTest {
*/
@Disabled
@Test
public void readRegistryAfterShutdownTest() throws IOException {
void readRegistryAfterShutdownTest() throws IOException {
// File registryFile = FileUtils.copyFileToWorkspace("registry.ser");
File registryFile = new File(Thread.currentThread().getContextClassLoader().getResource("work/registry.ser").getPath());
FileInputStream fileInputStream = new FileInputStream(registryFile);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
@ActiveProfiles("test")
@ContextConfiguration(classes = PscloadApplication.class)
@AutoConfigureMockMvc
public class RunnerTest {
class RunnerTest {

@Autowired
private ProcessRegistry registry;
Expand Down Expand Up @@ -163,7 +163,7 @@ void schedulerNominalProcessTest() throws Exception {

@Test
@DisplayName("continue process with exclusions")
public void continueProcessWithExclusionsTest() throws Exception {
void continueProcessWithExclusionsTest() throws Exception {
String contextPath = "/V300/services/extraction/Extraction_ProSanteConnect";
String filename = "Extraction_ProSanteConnect_Personne_activite_202112120512.txt";
zipFile(filename);
Expand Down