1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.dbunit.dataset.datatype;
23
24 import junit.framework.TestCase;
25
26
27
28
29
30
31 public abstract class AbstractDataTypeTest extends TestCase
32 {
33
34 public AbstractDataTypeTest(String name)
35 {
36 super(name);
37 }
38
39 public abstract void testToString() throws Exception;
40
41 public abstract void testGetTypeClass() throws Exception;
42
43 public abstract void testIsNumber() throws Exception;
44
45 public abstract void testIsDateTime() throws Exception;
46
47 public abstract void testTypeCast() throws Exception;
48
49 public abstract void testTypeCastNone() throws Exception;
50
51 public abstract void testTypeCastInvalid() throws Exception;
52
53 public abstract void testSqlType() throws Exception;
54
55 public abstract void testForObject() throws Exception;
56
57 public abstract void testAsString() throws Exception;
58
59 public abstract void testCompareEquals() throws Exception;
60 public abstract void testCompareDifferent() throws Exception;
61 public abstract void testCompareInvalid() throws Exception;
62
63 public abstract void testGetSqlValue() throws Exception;
64
65 }
66
67
68
69