Ignore:
Timestamp:
2018-07-24T23:25:24+02:00 (6 years ago)
Author:
Don-vip
Message:

see #16498 - convert more unit tests to Java

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.java

    r14043 r14048  
    11// License: GPL. For details, see LICENSE file.
    2 package org.openstreetmap.josm.gui.mappaint
     2package org.openstreetmap.josm.gui.mappaint;
    33
    4 import junit.framework.TestCase
     4import org.junit.runner.RunWith;
     5import org.junit.runners.Suite;
     6import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests;
    57
    6 import org.junit.runner.RunWith
    7 import org.junit.runners.Suite
    8 import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests
     8import junit.framework.TestCase;
    99
     10/**
     11 * All mappaint tests.
     12 */
    1013@RunWith(Suite.class)
    11 @Suite.SuiteClasses([
     14@Suite.SuiteClasses({
    1215    LabelCompositionStrategyTest.class,
    1316    MapCSSWithExtendedTextDirectivesTest.class,
    1417    AllMapCSSTests.class
     18})
     19public class AllMappaintTests extends TestCase{
    1520
    16 ])
    17 public class AllMappaintTests extends TestCase{}
    18 
     21}
Note: See TracChangeset for help on using the changeset viewer.