mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
introduce JUnit framework for testing.
This commit is contained in:
parent
228f742b2f
commit
b4b1f0a2c9
3 changed files with 220 additions and 17 deletions
11
java/test/org/msgpack/TestSample.java
Normal file
11
java/test/org/msgpack/TestSample.java
Normal 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);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue