You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }