Home | History | Annotate | Download | only in base

Lines Matching refs:property

29     for (StandardSystemProperty property : StandardSystemProperty.values()) {
30 String fieldName = property.name();
32 assertEquals(expected, property.key());
37 for (StandardSystemProperty property : StandardSystemProperty.values()) {
38 assertEquals(System.getProperty(property.key()), property.value());
43 for (StandardSystemProperty property : StandardSystemProperty.values()) {
44 assertEquals(property.key() + "=" + property.value(), property.toString());
49 for (StandardSystemProperty property : StandardSystemProperty.values()) {
52 if (property != StandardSystemProperty.JAVA_COMPILER) {
53 assertNotNull(property.value());