source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.java@ 17531

Last change on this file since 17531 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 445 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint;
3
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests;
7
8/**
9 * All mappaint tests.
10 */
11@RunWith(Suite.class)
12@Suite.SuiteClasses({
13 LabelCompositionStrategyTest.class,
14 MapCSSWithExtendedTextDirectivesTest.class,
15 AllMapCSSTests.class
16})
17class AllMappaintTests {
18
19}
Note: See TracBrowser for help on using the repository browser.