create changelog entry
[debian/openrocket] / core / test / net / sf / openrocket / file / rocksim / importt / RocksimContentHandlerTest.java
1 /*
2  * RocksimContentHandlerTest.java
3  */
4 package net.sf.openrocket.file.rocksim.importt;
5
6 import org.junit.Assert;
7
8 /**
9  * RocksimContentHandler Tester.
10  *
11  */
12 public class RocksimContentHandlerTest {
13
14     /**
15      *
16      * Method: getDocument()
17      *
18      * @throws Exception  thrown if something goes awry
19      */
20     @org.junit.Test
21     public void testGetDocument() throws Exception {
22         RocksimContentHandler handler = new RocksimContentHandler();
23         Assert.assertNotNull(handler.getDocument());
24     }
25
26 }