View Javadoc

1   /**
2    *
3    */
4   package org.diyefi.openlogviewer.decoder;
5   
6   import junit.framework.TestCase;
7   
8   public class FreeEMSBinaryTest extends TestCase {
9   
10  	public FreeEMSBinaryTest(String name) {
11  		super(name);
12  	}
13  
14  	/* (non-Javadoc)
15  	 * @see junit.framework.TestCase#setUp()
16  	 */
17  	protected void setUp() throws Exception {
18  		super.setUp();
19  	}
20  
21  	/* (non-Javadoc)
22  	 * @see junit.framework.TestCase#tearDown()
23  	 */
24  	protected void tearDown() throws Exception {
25  		super.tearDown();
26  	}
27  
28  	public void testChecksum(){
29  		assertEquals(true, true);
30  	}
31  
32  	public void testFail(){
33  		assertTrue(true);
34  	}
35  
36  	public void testPass(){
37  		assertTrue(true);
38  	}
39  }