Changeset 9231 in josm for trunk/test/unit/org/openstreetmap/josm/gui/util
- Timestamp:
- 2016-01-01T02:35:34+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/util/RotationAngleTest.java
r8857 r9231 13 13 private static final double EPSILON = 1e-11; 14 14 15 /** 16 * Unit test of method {@link RotationAngle#buildStaticRotation} - nominal cases. 17 */ 15 18 @Test 16 19 public void testParseCardinal() { … … 20 23 } 21 24 25 /** 26 * Unit test of method {@link RotationAngle#buildStaticRotation} - wrong parameter. 27 */ 22 28 @Test(expected = IllegalArgumentException.class) 23 29 public void testParseFail() { … … 25 31 } 26 32 33 /** 34 * Unit test of method {@link RotationAngle#buildStaticRotation} - null handling. 35 */ 27 36 @Test(expected = NullPointerException.class) 28 37 public void testParseNull() {
Note:
See TracChangeset
for help on using the changeset viewer.