Changeset 8511 in josm for trunk/test/unit
- Timestamp:
- 2015-06-21T00:16:09+02:00 (10 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/JOSMFixture.java
r8510 r8511 23 23 * @return A new test fixture for unit tests 24 24 */ 25 static public JOSMFixture createUnitTestFixture() {25 public static JOSMFixture createUnitTestFixture() { 26 26 return new JOSMFixture("test/config/unit-josm.home"); 27 27 } … … 31 31 * @return A new test fixture for functional tests 32 32 */ 33 static public JOSMFixture createFunctionalTestFixture() {33 public static JOSMFixture createFunctionalTestFixture() { 34 34 return new JOSMFixture("test/config/functional-josm.home"); 35 35 } … … 39 39 * @return A new test fixture for performance tests 40 40 */ 41 static public JOSMFixture createPerformanceTestFixture() {41 public static JOSMFixture createPerformanceTestFixture() { 42 42 return new JOSMFixture("test/config/performance-josm.home"); 43 43 } -
trunk/test/unit/org/openstreetmap/josm/gui/conflict/properties/PropertiesMergeModelTest.java
r8510 r8511 25 25 public class PropertiesMergeModelTest { 26 26 27 public staticabstract class TestObserver implements Observer {27 public abstract static class TestObserver implements Observer { 28 28 public int numInvocations; 29 29 -
trunk/test/unit/org/openstreetmap/josm/gui/tagging/PresetClassificationsTest.java
r8509 r8511 23 23 public class PresetClassificationsTest { 24 24 25 final staticTaggingPresetSelector.PresetClassifications classifications = new TaggingPresetSelector.PresetClassifications();25 static final TaggingPresetSelector.PresetClassifications classifications = new TaggingPresetSelector.PresetClassifications(); 26 26 27 27 /**
Note:
See TracChangeset
for help on using the changeset viewer.