private static String getProperty()

in src/main/java/com/oracle/plugin/jtreg/runtime/TestListener.java [136:143]


    private static String getProperty(TestResult testResult, String name, String defaultValue) {
        try {
            String value = testResult.getProperty(name);
            return value == null || value.isEmpty() ? defaultValue : value;
        } catch (Throwable t) {
            return defaultValue;
        }
    }