X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Ftest%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Ftasks%2FEnvironmentProcessorTest.java;h=5d8c74c53dad586d01ae3fa7d72e74998269c297;hb=2310d1c6a458bd12b2d1ff805f1bd12dcd536cfa;hp=c22629b4bc246224cab982066c72b43137cde9b0;hpb=2305728286281ae2a483633e5b1d24287fa6544a;p=nonrtric.git diff --git a/policy-agent/src/test/java/org/oransc/policyagent/tasks/EnvironmentProcessorTest.java b/policy-agent/src/test/java/org/oransc/policyagent/tasks/EnvironmentProcessorTest.java index c22629b4..5d8c74c5 100644 --- a/policy-agent/src/test/java/org/oransc/policyagent/tasks/EnvironmentProcessorTest.java +++ b/policy-agent/src/test/java/org/oransc/policyagent/tasks/EnvironmentProcessorTest.java @@ -35,7 +35,7 @@ import org.oransc.policyagent.exceptions.EnvironmentLoaderException; import org.oransc.policyagent.utils.LoggingUtils; import reactor.test.StepVerifier; -public class EnvironmentProcessorTest { +class EnvironmentProcessorTest { private static final String CONSUL_HOST = "CONSUL_HOST"; private static final String CONSUL_HOST_VALUE = "consulHost"; @@ -46,7 +46,7 @@ public class EnvironmentProcessorTest { private static final String HOSTNAME_VALUE = "hostname"; @Test - public void allPropertiesAvailableWithHostname_thenAllPropertiesAreReturnedWithGivenConsulPort() { + void allPropertiesAvailableWithHostname_thenAllPropertiesAreReturnedWithGivenConsulPort() { Properties systemEnvironment = new Properties(); String consulPort = "8080"; systemEnvironment.put(CONSUL_HOST, CONSUL_HOST_VALUE); @@ -66,7 +66,7 @@ public class EnvironmentProcessorTest { } @Test - public void consulHostMissing_thenExceptionReturned() { + void consulHostMissing_thenExceptionReturned() { Properties systemEnvironment = new Properties(); StepVerifier.create(EnvironmentProcessor.readEnvironmentVariables(systemEnvironment)) @@ -76,7 +76,7 @@ public class EnvironmentProcessorTest { } @Test - public void withAllPropertiesExceptConsulPort_thenAllPropertiesAreReturnedWithDefaultConsulPortAndWarning() { + void withAllPropertiesExceptConsulPort_thenAllPropertiesAreReturnedWithDefaultConsulPortAndWarning() { Properties systemEnvironment = new Properties(); systemEnvironment.put(CONSUL_HOST, CONSUL_HOST_VALUE); systemEnvironment.put(CONFIG_BINDING_SERVICE, CONFIG_BINDING_SERVICE_VALUE); @@ -101,7 +101,7 @@ public class EnvironmentProcessorTest { } @Test - public void configBindingServiceMissing_thenExceptionReturned() { + void configBindingServiceMissing_thenExceptionReturned() { Properties systemEnvironment = new Properties(); systemEnvironment.put(CONSUL_HOST, CONSUL_HOST_VALUE); @@ -112,7 +112,7 @@ public class EnvironmentProcessorTest { } @Test - public void allPropertiesAvailableWithServiceName_thenAllPropertiesAreReturned() { + void allPropertiesAvailableWithServiceName_thenAllPropertiesAreReturned() { Properties systemEnvironment = new Properties(); String consulPort = "8080"; systemEnvironment.put(CONSUL_HOST, CONSUL_HOST_VALUE); @@ -132,7 +132,7 @@ public class EnvironmentProcessorTest { } @Test - public void serviceNameAndHostnameMissing_thenExceptionIsReturned() { + void serviceNameAndHostnameMissing_thenExceptionIsReturned() { Properties systemEnvironment = new Properties(); systemEnvironment.put(CONSUL_HOST, CONSUL_HOST_VALUE); systemEnvironment.put(CONFIG_BINDING_SERVICE, CONFIG_BINDING_SERVICE_VALUE);