File tree 1 file changed +18
-4
lines changed
1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,20 @@ SQLite3ColumnTest >> tearDown [
38
38
super tearDown
39
39
]
40
40
41
+ { #category : #tests }
42
+ SQLite3ColumnTest >> testHasNotNullConstraint [
43
+
44
+ self assert: firstColumn hasNotNullConstraint.
45
+ self deny: secondColumn hasNotNullConstraint
46
+ ]
47
+
48
+ { #category : #tests }
49
+ SQLite3ColumnTest >> testIndex [
50
+
51
+ self assert: firstColumn index equals: 0 .
52
+ self assert: secondColumn index equals: 1
53
+ ]
54
+
41
55
{ #category : #tests }
42
56
SQLite3ColumnTest >> testInitialization [
43
57
@@ -47,10 +61,10 @@ SQLite3ColumnTest >> testInitialization [
47
61
]
48
62
49
63
{ #category : #tests }
50
- SQLite3ColumnTest >> testNotNullConstraint [
51
-
52
- self assert: firstColumn hasNotNullConstraint .
53
- self deny : secondColumn hasNotNullConstraint
64
+ SQLite3ColumnTest >> testName [
65
+
66
+ self assert: firstColumn name equals: ' ID ' .
67
+ self assert : secondColumn name equals: ' NAME '
54
68
]
55
69
56
70
{ #category : #tests }
You can’t perform that action at this time.
0 commit comments