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

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

fix #21064 - Add JUnit 5 extension for preferences (patch by taylor.smock)

  • Property svn:eol-style set to native
File size: 574 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.validation.util;
3
4import net.trajano.commons.testing.UtilityClassTestUtil;
5import org.junit.jupiter.api.Test;
6
7/**
8 * Unit tests for class {@link Entities}.
9 */
10class EntitiesTest {
11 /**
12 * Tests that {@code Entities} satisfies utility class criteria.
13 * @throws ReflectiveOperationException if an error occurs
14 */
15 @Test
16 void testUtilityClass() throws ReflectiveOperationException {
17 UtilityClassTestUtil.assertUtilityClassWellDefined(Entities.class);
18 }
19}
Note: See TracBrowser for help on using the repository browser.