Changeset 36064 in osm for applications/editors/josm/plugins/poly
- Timestamp:
- 2023-03-21T14:49:10+01:00 (2 years ago)
- Location:
- applications/editors/josm/plugins/poly/test/unit/poly
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/poly/test/unit/poly/PolyExporterTest.java
r34966 r36064 2 2 package poly; 3 3 4 import static org.junit. Assert.assertEquals;5 import static org.junit. Assert.assertNotNull;4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 import static org.junit.jupiter.api.Assertions.assertNotNull; 6 6 7 7 import java.nio.file.Files; 8 8 import java.nio.file.Path; 9 9 10 import org.junit. Rule;11 import org.junit. Test;10 import org.junit.jupiter.api.Test; 11 import org.junit.jupiter.api.Timeout; 12 12 import org.openstreetmap.josm.TestUtils; 13 13 import org.openstreetmap.josm.data.osm.DataSet; 14 14 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 15 import org.openstreetmap.josm.testutils. JOSMTestRules;15 import org.openstreetmap.josm.testutils.annotations.BasicPreferences; 16 16 17 17 /** … … 19 19 * @author Gerd Petermann 20 20 */ 21 public class PolyExporterTest { 22 23 /** 24 * Setup test. 25 */ 26 @Rule 27 public JOSMTestRules rules = new JOSMTestRules().preferences().timeout(20000); 28 21 @BasicPreferences 22 @Timeout(20) 23 class PolyExporterTest { 29 24 /** 30 25 * Import file, export it, import the exported file and compare content … … 32 27 */ 33 28 @Test 34 publicvoid testSimpleExport() throws Exception {29 void testSimpleExport() throws Exception { 35 30 DataSet dsIn1 = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/simple.poly"); 36 31 assertNotNull(dsIn1); … … 55 50 */ 56 51 @Test 57 publicvoid testExport() throws Exception {52 void testExport() throws Exception { 58 53 DataSet dsIn1 = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/holes.poly"); 59 54 assertNotNull(dsIn1); -
applications/editors/josm/plugins/poly/test/unit/poly/PolyImporterTest.java
r34860 r36064 2 2 package poly; 3 3 4 import static org.junit. Assert.assertEquals;5 import static org.junit. Assert.assertNotNull;6 import static org.junit. Assert.assertNull;4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 import static org.junit.jupiter.api.Assertions.assertNotNull; 6 import static org.junit.jupiter.api.Assertions.assertThrows; 7 7 8 import org.junit.Rule; 9 import org.junit.Test; 8 import org.junit.jupiter.api.Test; 10 9 import org.openstreetmap.josm.TestUtils; 11 10 import org.openstreetmap.josm.data.osm.DataSet; 12 11 import org.openstreetmap.josm.io.IllegalDataException; 13 import org.openstreetmap.josm.testutils. JOSMTestRules;12 import org.openstreetmap.josm.testutils.annotations.BasicPreferences; 14 13 15 14 /** … … 17 16 * @author Gerd Petermann 18 17 */ 19 public class PolyImporterTest { 20 21 /** 22 * Setup test. 23 */ 24 @Rule 25 public JOSMTestRules rules = new JOSMTestRules().preferences(); 26 18 @BasicPreferences 19 class PolyImporterTest { 27 20 /** 28 21 * @throws Exception if an error occurs 29 22 */ 30 23 @Test 31 publicvoid testSimple() throws Exception {24 void testSimple() throws Exception { 32 25 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/simple.poly"); 33 26 assertNotNull(ds); … … 42 35 */ 43 36 @Test 44 publicvoid testSimple2() throws Exception {37 void testSimple2() throws Exception { 45 38 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/splitter.poly"); 46 39 assertNotNull(ds); … … 54 47 */ 55 48 @Test 56 publicvoid testHoles() throws Exception {49 void testHoles() throws Exception { 57 50 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/holes.poly"); 58 51 assertNotNull(ds); … … 66 59 */ 67 60 @Test 68 publicvoid testTwoOuter() throws Exception {61 void testTwoOuter() throws Exception { 69 62 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/australia_v.poly"); 70 63 assertNotNull(ds); … … 78 71 */ 79 72 @Test 80 publicvoid testDoubleEnd() throws Exception {73 void testDoubleEnd() throws Exception { 81 74 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/bremen-double-end.poly"); 82 75 assertNotNull(ds); … … 90 83 */ 91 84 @Test 92 publicvoid testMultipleFile() throws Exception {85 void testMultipleFile() throws Exception { 93 86 DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/multi-concat.poly"); 94 87 assertNotNull(ds); … … 100 93 /** 101 94 * Should throw an IllegalDataException 102 * @throws Exception if an error occurs103 95 */ 104 @Test (expected = IllegalDataException.class)105 publicvoid testNameMissing()throws Exception{106 DataSet ds= new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/name-missing.poly");107 assert Null(ds);96 @Test 97 void testNameMissing() { 98 final PolyImporter importer = new PolyImporter(); 99 assertThrows(IllegalDataException.class, () -> importer.parseDataSet(TestUtils.getTestDataRoot() + "/name-missing.poly")); 108 100 } 109 101
Note:
See TracChangeset
for help on using the changeset viewer.