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

Last change on this file since 11978 was 11978, checked in by Don-vip, 7 years ago

improve coverage and javadoc of enum classes for package actions

  • Property svn:eol-style set to native
File size: 486 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import org.junit.Test;
5import org.openstreetmap.josm.TestUtils;
6import org.openstreetmap.josm.actions.MoveAction.Direction;
7
8/**
9 * Unit tests for class {@link ExtensionFileFilter}.
10 */
11public class MoveActionTest {
12
13 /**
14 * Unit test of {@link Direction} enum.
15 */
16 @Test
17 public void testEnumDirection() {
18 TestUtils.superficialEnumCodeCoverage(Direction.class);
19 }
20}
Note: See TracBrowser for help on using the repository browser.