introduce JUnit framework for testing.

This commit is contained in:
Kazuki Ohta 2010-04-17 20:16:48 +09:00
parent 228f742b2f
commit b4b1f0a2c9
3 changed files with 220 additions and 17 deletions

View file

@ -0,0 +1,11 @@
package org.msgpack;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class TestSample {
@Test
public void testNull() throws Exception {
assertEquals("aiueo", 0, 0);
}
};