選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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