Changeset 17774 in josm
- Timestamp:
- 2021-04-13T22:24:05+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactoryTest.java
r17762 r17774 15 15 16 16 import java.lang.reflect.Method; 17 import java.lang.reflect.Modifier; 17 18 18 19 /** … … 52 53 void testAllPseudoClassesRegistered() { 53 54 for (Method method : PseudoClasses.class.getDeclaredMethods()) { 55 if (!Modifier.isPublic(method.getModifiers()) || method.toString().contains("$jacocoInit")) { 56 return; 57 } 54 58 String name = method.getName().replaceFirst("^_new$", "new"); 55 59 Context context = name.equals("sameTags") ? Context.LINK : Context.PRIMITIVE;
Note:
See TracChangeset
for help on using the changeset viewer.