source: josm/trunk/test/unit/JOSMTest.java@ 11921

Last change on this file since 11921 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: 333 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2import static org.junit.Assert.assertNotNull;
3
4import org.junit.Test;
5
6/**
7 * Unit tests of {@link JOSM} class.
8 */
9public class JOSMTest {
10
11 /**
12 * Unit test of {@link JOSM} constructor.
13 */
14 @Test
15 public void testJOSM() {
16 assertNotNull(new JOSM());
17 }
18}
Note: See TracBrowser for help on using the repository browser.