mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
12 lines
219 B
Java
12 lines
219 B
Java
|
|
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);
|
||
|
|
}
|
||
|
|
};
|