JAVA-19058 Review the time of the build - Week 42 - 2022 (moved-18) (#13732)

This commit is contained in:
anuragkumawat 2023-03-30 21:56:27 +05:30 committed by GitHub
parent e310fe84da
commit dd5badab9c
3 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import org.junit.Test;
import com.baeldung.apache.beam.intro.WordCount; import com.baeldung.apache.beam.intro.WordCount;
public class WordCountUnitTest { public class WordCountIntegrationTest {
@Test @Test
public void givenInputFile_whenWordCountRuns_thenJobFinishWithoutError() { public void givenInputFile_whenWordCountRuns_thenJobFinishWithoutError() {

View File

@ -2,7 +2,8 @@ package com.baeldung.concurrent.prioritytaskexecution;
import org.junit.Test; import org.junit.Test;
public class PriorityJobSchedulerUnitTest { //Converted to ManualTest due to thread sleep
public class PriorityJobSchedulerManualTest {
private static final int POOL_SIZE = 1; private static final int POOL_SIZE = 1;
private static final int QUEUE_SIZE = 10; private static final int QUEUE_SIZE = 10;

View File

@ -16,7 +16,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
import jakarta.ws.rs.core.Application; import jakarta.ws.rs.core.Application;
import jakarta.ws.rs.core.Response; import jakarta.ws.rs.core.Response;
public class EchoHeadersUnitTest extends JerseyTest { public class EchoHeadersIntegrationTest extends JerseyTest {
private static final String SIMPLE_HEADER_KEY = "my-header-key"; private static final String SIMPLE_HEADER_KEY = "my-header-key";
private static final String SIMPLE_HEADER_VALUE = "my-header-value"; private static final String SIMPLE_HEADER_VALUE = "my-header-value";