diff --git a/.github/workflows/lint_vba.yml b/.github/workflows/lint_vba.yml index 99fd5b6..71dfe79 100644 --- a/.github/workflows/lint_vba.yml +++ b/.github/workflows/lint_vba.yml @@ -13,6 +13,4 @@ jobs: steps: - uses: actions/checkout@v3 - name: Lint - uses: Vba-actions/lint-vba@dev - with: - path: './src' + uses: Vba-actions/lint-vba@dev \ No newline at end of file diff --git a/testing/ClassModules/ArithmeticTests.cls b/testing/ClassModules/ArithmeticTests.cls index a45c118..09e4a44 100644 --- a/testing/ClassModules/ArithmeticTests.cls +++ b/testing/ClassModules/ArithmeticTests.cls @@ -1,3 +1,12 @@ +VERSION 1.0 CLASS +BEGIN + MultiUse = -1 'True +END +Attribute VB_Name = "ArithmeticTests" +Attribute VB_GlobalNameSpace = False +Attribute VB_Creatable = False +Attribute VB_PredeclaredId = False +Attribute VB_Exposed = False Implements iTestCase Dim M As New Matrix diff --git a/testing/ClassModules/LetGetTest.cls b/testing/ClassModules/LetGetTest.cls index 64dcf3c..509f9db 100644 --- a/testing/ClassModules/LetGetTest.cls +++ b/testing/ClassModules/LetGetTest.cls @@ -1,3 +1,12 @@ +VERSION 1.0 CLASS +BEGIN + MultiUse = -1 'True +END +Attribute VB_Name = "LetGetTest" +Attribute VB_GlobalNameSpace = False +Attribute VB_Creatable = False +Attribute VB_PredeclaredId = False +Attribute VB_Exposed = False Implements iTestCase Dim M As New Matrix diff --git a/testing/ClassModules/MatrixTestConfig.cls b/testing/ClassModules/MatrixTestConfig.cls index e20385c..5d425fc 100644 --- a/testing/ClassModules/MatrixTestConfig.cls +++ b/testing/ClassModules/MatrixTestConfig.cls @@ -1,3 +1,12 @@ +VERSION 1.0 CLASS +BEGIN + MultiUse = -1 'True +END +Attribute VB_Name = "MatrixTestConfig" +Attribute VB_GlobalNameSpace = False +Attribute VB_Creatable = False +Attribute VB_PredeclaredId = False +Attribute VB_Exposed = False Implements iTestableProject Dim bOutputFailures As Boolean diff --git a/testing/ClassModules/PropertyTests.cls b/testing/ClassModules/PropertyTests.cls index 41ad1e8..575f88f 100644 --- a/testing/ClassModules/PropertyTests.cls +++ b/testing/ClassModules/PropertyTests.cls @@ -1,3 +1,12 @@ +VERSION 1.0 CLASS +BEGIN + MultiUse = -1 'True +END +Attribute VB_Name = "PropertyTests" +Attribute VB_GlobalNameSpace = False +Attribute VB_Creatable = False +Attribute VB_PredeclaredId = False +Attribute VB_Exposed = False Implements iTestCase Dim M As New Matrix diff --git a/testing/ClassModules/TransformationTests.cls b/testing/ClassModules/TransformationTests.cls index 5856018..5c4c6e4 100644 --- a/testing/ClassModules/TransformationTests.cls +++ b/testing/ClassModules/TransformationTests.cls @@ -1,3 +1,12 @@ +VERSION 1.0 CLASS +BEGIN + MultiUse = -1 'True +END +Attribute VB_Name = "TransformationTests" +Attribute VB_GlobalNameSpace = False +Attribute VB_Creatable = False +Attribute VB_PredeclaredId = False +Attribute VB_Exposed = False Implements iTestCase Dim M As Matrix diff --git a/testing/Modules/MatrixUnitTests.bas b/testing/Modules/MatrixUnitTests.bas index 374f491..53f1d1a 100644 --- a/testing/Modules/MatrixUnitTests.bas +++ b/testing/Modules/MatrixUnitTests.bas @@ -1,3 +1,4 @@ +Attribute VB_Name = "MatrixUnitTests" Public Function RunTests() Dim TestConfig As iTestableProject