source: josm/trunk/test/unit/org/openstreetmap/josm/actions/MoveActionTest.java@ 17383

Last change on this file since 17383 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: 484 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import org.junit.jupiter.api.Test;
5import org.openstreetmap.josm.TestUtils;
6import org.openstreetmap.josm.actions.MoveAction.Direction;
7
8/**
9 * Unit tests for class {@link ExtensionFileFilter}.
10 */
11class MoveActionTest {
12
13 /**
14 * Unit test of {@link Direction} enum.
15 */
16 @Test
17 void testEnumDirection() {
18 TestUtils.superficialEnumCodeCoverage(Direction.class);
19 }
20}
Note: See TracBrowser for help on using the repository browser.