Changeset 10758 in josm for trunk/test/performance/org
- Timestamp:
- 2016-08-07T17:39:42+02:00 (8 years ago)
- Location:
- trunk/test/performance/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/performance/org/openstreetmap/josm/data/osm/KeyValuePerformanceTest.java
r10222 r10758 56 56 @Test 57 57 @SuppressFBWarnings(value = "DM_STRING_CTOR", justification = "test Strings that are interned and those that are not") 58 public void measureStringEqualsIntern() {58 public void testMeasureStringEqualsIntern() { 59 59 String str1Interned = "string1"; 60 60 String str1InternedB = "string1"; -
trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java
r10222 r10758 25 25 @Test 26 26 @SuppressFBWarnings(value = "RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT") 27 public void test () {27 public void testRounding() { 28 28 final int n = 1000000; 29 29 long start = System.nanoTime(); -
trunk/test/performance/org/openstreetmap/josm/io/OsmReaderPerformanceTest.java
r10222 r10758 62 62 */ 63 63 @Test 64 public void test () throws Exception {64 public void testPlain() throws Exception { 65 65 runTest(".osm-file", true); 66 66 }
Note:
See TracChangeset
for help on using the changeset viewer.