1
2
3
4
5
6 package org.neo.swarm.util.serialize;
7
8 import org.neo.swarm.util.serialize.Serializer;
9 import org.neo.swarm.util.serialize.StandardSerializer;
10
11 import junit.framework.TestCase;
12
13 /***
14 * This object does.....
15 *
16 * @author neil.avery
17 */
18 public class StandardSerializerTest extends TestCase {
19
20 public void testWithSimpleObject() throws Exception {
21 Serializer ser = new StandardSerializer();
22 byte[] stuff = ser.serialize(new SimpleObject("blah"));
23 }
24
25
26
27
28
29
30 }