source: josm/trunk/test/unit/org/openstreetmap/josm/data/validation/util/EntitiesTest.java@ 16182

Last change on this file since 16182 was 16182, checked in by simon04, 4 years ago

Fix typos in Javadoc

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