Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

SystemPropertiesTest.java 433B

12345678910111213
  1. public class SystemPropertiesTest {
  2. public static void main(String[] args) {
  3. boolean pass = Boolean.getBoolean("PASS");
  4. if (!pass) {
  5. throw new RuntimeException("failed to get Boolean \"PASS\"");
  6. }
  7. String value = System.getProperty("name", null);
  8. if (!"value".equals(value)) {
  9. throw new RuntimeException("failed to get name=\"value\": " + value);
  10. }
  11. }
  12. }