Ignore:
Timestamp:
2023-03-21T14:49:10+01:00 (2 years ago)
Author:
taylor.smock
Message:

See #16567: Convert most plugin tests to JUnit 5

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  
    22package poly;
    33
    4 import static org.junit.Assert.assertEquals;
    5 import static org.junit.Assert.assertNotNull;
     4import static org.junit.jupiter.api.Assertions.assertEquals;
     5import static org.junit.jupiter.api.Assertions.assertNotNull;
    66
    77import java.nio.file.Files;
    88import java.nio.file.Path;
    99
    10 import org.junit.Rule;
    11 import org.junit.Test;
     10import org.junit.jupiter.api.Test;
     11import org.junit.jupiter.api.Timeout;
    1212import org.openstreetmap.josm.TestUtils;
    1313import org.openstreetmap.josm.data.osm.DataSet;
    1414import org.openstreetmap.josm.gui.layer.OsmDataLayer;
    15 import org.openstreetmap.josm.testutils.JOSMTestRules;
     15import org.openstreetmap.josm.testutils.annotations.BasicPreferences;
    1616
    1717/**
     
    1919 * @author Gerd Petermann
    2020 */
    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)
     23class PolyExporterTest {
    2924    /**
    3025     * Import file, export it, import the exported file and compare content
     
    3227     */
    3328    @Test
    34     public void testSimpleExport() throws Exception {
     29    void testSimpleExport() throws Exception {
    3530        DataSet dsIn1 = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/simple.poly");
    3631        assertNotNull(dsIn1);
     
    5550     */
    5651    @Test
    57     public void testExport() throws Exception {
     52    void testExport() throws Exception {
    5853        DataSet dsIn1 = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/holes.poly");
    5954        assertNotNull(dsIn1);
  • applications/editors/josm/plugins/poly/test/unit/poly/PolyImporterTest.java

    r34860 r36064  
    22package poly;
    33
    4 import static org.junit.Assert.assertEquals;
    5 import static org.junit.Assert.assertNotNull;
    6 import static org.junit.Assert.assertNull;
     4import static org.junit.jupiter.api.Assertions.assertEquals;
     5import static org.junit.jupiter.api.Assertions.assertNotNull;
     6import static org.junit.jupiter.api.Assertions.assertThrows;
    77
    8 import org.junit.Rule;
    9 import org.junit.Test;
     8import org.junit.jupiter.api.Test;
    109import org.openstreetmap.josm.TestUtils;
    1110import org.openstreetmap.josm.data.osm.DataSet;
    1211import org.openstreetmap.josm.io.IllegalDataException;
    13 import org.openstreetmap.josm.testutils.JOSMTestRules;
     12import org.openstreetmap.josm.testutils.annotations.BasicPreferences;
    1413
    1514/**
     
    1716 * @author Gerd Petermann
    1817 */
    19 public class PolyImporterTest {
    20 
    21     /**
    22      * Setup test.
    23      */
    24     @Rule
    25     public JOSMTestRules rules = new JOSMTestRules().preferences();
    26 
     18@BasicPreferences
     19class PolyImporterTest {
    2720    /**
    2821     * @throws Exception if an error occurs
    2922     */
    3023    @Test
    31     public void testSimple() throws Exception {
     24    void testSimple() throws Exception {
    3225        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/simple.poly");
    3326        assertNotNull(ds);
     
    4235     */
    4336    @Test
    44     public void testSimple2() throws Exception {
     37    void testSimple2() throws Exception {
    4538        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/splitter.poly");
    4639        assertNotNull(ds);
     
    5447     */
    5548    @Test
    56     public void testHoles() throws Exception {
     49    void testHoles() throws Exception {
    5750        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/holes.poly");
    5851        assertNotNull(ds);
     
    6659     */
    6760    @Test
    68     public void testTwoOuter() throws Exception {
     61    void testTwoOuter() throws Exception {
    6962        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/australia_v.poly");
    7063        assertNotNull(ds);
     
    7871     */
    7972    @Test
    80     public void testDoubleEnd() throws Exception {
     73    void testDoubleEnd() throws Exception {
    8174        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/bremen-double-end.poly");
    8275        assertNotNull(ds);
     
    9083     */
    9184    @Test
    92     public void testMultipleFile() throws Exception {
     85    void testMultipleFile() throws Exception {
    9386        DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/multi-concat.poly");
    9487        assertNotNull(ds);
     
    10093    /**
    10194     * Should throw an IllegalDataException
    102      * @throws Exception if an error occurs
    10395     */
    104     @Test (expected = IllegalDataException.class)
    105     public void testNameMissing() throws Exception {
    106         DataSet ds = new PolyImporter().parseDataSet(TestUtils.getTestDataRoot() + "/name-missing.poly");
    107         assertNull(ds);
     96    @Test
     97    void testNameMissing() {
     98        final PolyImporter importer = new PolyImporter();
     99        assertThrows(IllegalDataException.class, () -> importer.parseDataSet(TestUtils.getTestDataRoot() + "/name-missing.poly"));
    108100    }
    109101
Note: See TracChangeset for help on using the changeset viewer.