Ignore:
Timestamp:
2024-09-17T17:42:35+02:00 (5 months ago)
Author:
taylor.smock
Message:

Add JUnit5 tags to integration tests, functional tests, and performance tests

This should allow contributors to filter out integration tests inside the standard
test directory. Of specific note, this should reduce test runtime for contributors
by a non-trivial amount if contributors filter out the tagged tests.

For consistencies’ sake, tests in functional and performance were also
annotated. As such, if we ever merge the test directories, this will let us
filter which tests are run in CI.

Note that many functional tests don't have the annotation. This is because they
are manual tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/functional/org/openstreetmap/josm/data/imagery/ImageryCompareTestIT.java

    r18870 r19223  
    1010import org.openstreetmap.josm.spi.preferences.Config;
    1111import org.openstreetmap.josm.testutils.annotations.BasicPreferences;
     12import org.openstreetmap.josm.testutils.annotations.FunctionalTest;
     13import org.openstreetmap.josm.testutils.annotations.IntegrationTest;
    1214import org.openstreetmap.josm.tools.HttpClient;
    1315
     
    1719 */
    1820@BasicPreferences
     21@FunctionalTest
     22@IntegrationTest
    1923@Timeout(60)
    2024class ImageryCompareTestIT {
Note: See TracChangeset for help on using the changeset viewer.