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