source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactoryTest.java@ 14064

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

improve unit test coverage of utilities classes thanks to https://trajano.github.io/commons-testing

  • Property svn:eol-style set to native
File size: 977 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint.mapcss;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.openstreetmap.josm.gui.mappaint.mapcss.ExpressionFactory.Functions;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10import net.trajano.commons.testing.UtilityClassTestUtil;
11
12/**
13 * Unit tests of {@link ExpressionFactory}.
14 */
15public class ExpressionFactoryTest {
16
17 /**
18 * Setup rule
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Tests that {@code Functions} satisfies utility class criterias.
26 * @throws ReflectiveOperationException if an error occurs
27 */
28 @Test
29 public void testUtilityClass() throws ReflectiveOperationException {
30 UtilityClassTestUtil.assertUtilityClassWellDefined(Functions.class);
31 }
32}
Note: See TracBrowser for help on using the repository browser.