source: josm/trunk/test/unit/org/openstreetmap/josm/tools/CheckParameterUtilTest.java

Last change on this file 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: 598 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools;
3
4import net.trajano.commons.testing.UtilityClassTestUtil;
5import org.junit.jupiter.api.Test;
6
7/**
8 * Unit tests of {@link CheckParameterUtil} class.
9 */
10class CheckParameterUtilTest {
11 /**
12 * Tests that {@code CheckParameterUtil} satisfies utility class criteria.
13 * @throws ReflectiveOperationException if an error occurs
14 */
15 @Test
16 void testUtilityClass() throws ReflectiveOperationException {
17 UtilityClassTestUtil.assertUtilityClassWellDefined(CheckParameterUtil.class);
18 }
19}
Note: See TracBrowser for help on using the repository browser.