Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions testing/ClassModules/SQLlibDatabaseTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Sub iTestCase_Setup()
End With
End Sub

Sub iTestCase_TearDown()

End Sub

Function mssqlTest()
MyDatabase.DBType = "mssql"

Expand Down
6 changes: 6 additions & 0 deletions testing/ClassModules/SQLlibDeleteTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Implements iTestCase

Sub iTestCase_Setup()

End Sub

Sub iTestCase_TearDown()

End Sub

Function iTestCase_GetAllTests()
iTestCase_GetAllTests = Array("SimpleDeleteTest")
End Function
Expand Down
4 changes: 4 additions & 0 deletions testing/ClassModules/SQLlibInsertTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Sub iTestCase_Setup()
Set MyInsert = Create_SQLInsert
End Sub

Sub iTestCase_TearDown()

End Sub

Function iTestCase_GetAllTests()
iTestCase_GetAllTests = Array("SimpleInsertTest", "InsertSelectTest", "InsertMultipleTest")
End Function
Expand Down
5 changes: 5 additions & 0 deletions testing/ClassModules/SQLlibSelectTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Dim Interfaced As iSQLQuery
Sub iTestCase_Setup()

End Sub

Sub iTestCase_TearDown()

End Sub

Function iTestCase_GetAllTests()
iTestCase_GetAllTests = Array("SimpleSelectTest", "GetByPropertyTest", "JoinTest", "DistinctTest")
End Function
Expand Down
5 changes: 5 additions & 0 deletions testing/ClassModules/SQLlibStaticTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Sub iTestCase_Setup()
Set MyStatic = Create_SQLStaticQuery
Set Interfaced = MyStatic
End Sub

Sub iTestCase_TearDown()

End Sub

Function iTestCase_GetAllTests()
iTestCase_GetAllTests = Array("NoArgumentTest", "AddargumentMissingColonTest", "CorrectUseTest", _
"ChangeArgumentTest", "EscapeTextTest", "MultipleArgumentTest", "ClearArgumentsTest", _
Expand Down
6 changes: 6 additions & 0 deletions testing/ClassModules/SQLlibUpdateTests.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Implements iTestCase

Sub iTestCase_Setup()

End Sub

Sub iTestCase_TearDown()

End Sub

Function iTestCase_GetAllTests()
iTestCase_GetAllTests = Array("SimpleUpdateTest")
End Function
Expand Down