source: josm/trunk/test/unit/org/openstreetmap/josm/data/osm/search/SearchModeTest.java@ 12659

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

see #15182 - extract SearchMode and SearchSetting from actions.search.SearchAction to data.osm.search

  • Property svn:eol-style set to native
File size: 738 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm.search;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.openstreetmap.josm.TestUtils;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10
11/**
12 * Unit tests for class {@link SearchMode}.
13 */
14public class SearchModeTest {
15
16 /**
17 * Setup rules.
18 */
19 @Rule
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules();
22
23 /**
24 * Unit test of {@link SearchMode} enum.
25 */
26 @Test
27 public void testEnumSearchMode() {
28 TestUtils.superficialEnumCodeCoverage(SearchMode.class);
29 }
30}
Note: See TracBrowser for help on using the repository browser.