1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package net.sourceforge.addam.impexp;
20
21 import junit.framework.TestCase;
22
23 import java.sql.Timestamp;
24
25 import net.sourceforge.addam.impexp.DataCodec;
26
27 /**
28 * @author TIM3
29 * @since Mar 31, 2005 12:22:26 PM
30 */
31 public class DataCodecUTEST extends TestCase {
32
33 public void testExpectedUsage() throws Exception {
34 DataCodec codec = DataCodec.getCodec("java.sql.Timestamp");
35 Timestamp ts1 = new Timestamp(System.currentTimeMillis());
36 String encoded = codec.encode(ts1);
37 Timestamp ts2 = (Timestamp) codec.decode(encoded);
38 assertEquals(ts1, ts2);
39 }
40
41 public void testNullValue() throws Exception {
42 DataCodec codec = DataCodec.getCodec("java.sql.Timestamp");
43 Timestamp ts1 = null;
44 String encoded = codec.encode(ts1);
45 Timestamp ts2 = (Timestamp) codec.decode(encoded);
46 assertEquals(ts1, ts2);
47 }
48
49 public void testDateOnly() throws Exception {
50 DataCodec codec = DataCodec.getCodec("java.sql.Timestamp");
51 Timestamp ts1 = new Timestamp(System.currentTimeMillis());
52 Timestamp ts2 = (Timestamp) codec.decode("2004-12-22");
53 assertEquals(ts1, ts2);
54 }
55 }