source:
josm/trunk/test/unit/JOSMTest.java@
11921
| Last change on this file since 11921 was 11921, checked in by , 9 years ago | |
|---|---|
|
|
| File size: 333 bytes | |
| Line | |
|---|---|
| 1 | // License: GPL. For details, see LICENSE file. |
| 2 | import static org.junit.Assert.assertNotNull; |
| 3 | |
| 4 | import org.junit.Test; |
| 5 | |
| 6 | /** |
| 7 | * Unit tests of {@link JOSM} class. |
| 8 | */ |
| 9 | public 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.
