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 @@ -47,7 +47,7 @@
*/
@Slf4j
@SpringBootTest
public class DiffComputedStateTest {
class DiffComputedStateTest {

/**
* The custom metrics.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void diffTaskTest() throws Exception {
*/
@Test
@DisplayName("initial diff from large file (100000 lines)")
public void diffFromLargeFile() throws Exception {
void diffFromLargeFile() throws Exception {
// ClassLoader cl = Thread.currentThread().getContextClassLoader();
// String rootpath = cl.getResource("work").getPath();
// File mapser = new File(rootpath + File.separator + "maps.ser");
Expand All @@ -225,7 +225,7 @@ public void diffFromLargeFile() throws Exception {
@Test
@Disabled
@DisplayName("check order impact on hashCode and equals methods")
public void checkDifferentOrderForPs() throws IOException {
void checkDifferentOrderForPs() throws IOException {
LoadProcess p = new LoadProcess(new ReadyToComputeDiff(List.of("60"),customMetrics, httpMockServer.baseUrl()));
File file1 = FileUtils.copyFileToWorkspace("2WorkSituationsOrder1");
ReadyToComputeDiff state = (ReadyToComputeDiff) p.getState();
Expand All @@ -246,7 +246,7 @@ public void checkDifferentOrderForPs() throws IOException {
@Test
@Disabled
@DisplayName("check that the order of first names is handled correctly")
public void checkCorrectFirstNameOrder() throws IOException {
void checkCorrectFirstNameOrder() throws IOException {
LoadProcess p = new LoadProcess(new ReadyToComputeDiff(List.of("60"),customMetrics, httpMockServer.baseUrl()));
File file1 = FileUtils.copyFileToWorkspace("FirstNameOrder");
ReadyToComputeDiff state = (ReadyToComputeDiff) p.getState();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@SpringBootTest
@ActiveProfiles("test")
@ContextConfiguration(classes = PscloadApplication.class)
public class SubmittedStateRunTaskTest {
class SubmittedStateRunTaskTest {

/** The http rass mock server. */
@RegisterExtension
Expand Down