Se você deseja recuperar informações sobre a variável de ambiente em Java, você pode chamar o método: System.getenv();
. Como as propriedades, esse método retorna um Mapa contendo os nomes das variáveis como chaves e os valores das variáveis como valores do mapa. Aqui está um exemplo :
import java.util.Map;
public class EnvMap {
public static void main (String[] args) {
Map<String, String> env = System.getenv();
for (String envName : env.keySet()) {
System.out.format("%s=%s%n", envName, env.get(envName));
}
}
}
O método getEnv()
também pode receber um argumento. Por exemplo :
String myvalue = System.getEnv("MY_VARIABLE");
Para testar, eu faria algo assim:
public class Environment {
public static String getVariable(String variable) {
return System.getenv(variable);
}
@Test
public class EnvVariableTest {
@Test testVariable1(){
String value = Environment.getVariable("MY_VARIABLE1");
doSometest(value);
}
@Test testVariable2(){
String value2 = Environment.getVariable("MY_VARIABLE2");
doSometest(value);
}
}