source: josm/trunk/test/unit/org/openstreetmap/josm/data/osm/search/PushbackTokenizerTest.java@ 17275

Last change on this file since 17275 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: 851 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm.search;
3
4import org.junit.jupiter.api.extension.RegisterExtension;
5import org.junit.jupiter.api.Test;
6import org.openstreetmap.josm.TestUtils;
7import org.openstreetmap.josm.data.osm.search.PushbackTokenizer.Token;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests for class {@link SearchCompiler}.
14 */
15class PushbackTokenizerTest {
16
17 /**
18 * Setup rules.
19 */
20 @RegisterExtension
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Unit test of {@link Token} enum.
26 */
27 @Test
28 void testEnumToken() {
29 TestUtils.superficialEnumCodeCoverage(Token.class);
30 }
31}
Note: See TracBrowser for help on using the repository browser.