Skip to content
Open

Dev #10

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: 1 addition & 3 deletions .github/workflows/lint_vba.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 9 additions & 0 deletions testing/ClassModules/ArithmeticTests.cls
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions testing/ClassModules/LetGetTest.cls
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions testing/ClassModules/MatrixTestConfig.cls
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions testing/ClassModules/PropertyTests.cls
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions testing/ClassModules/TransformationTests.cls
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions testing/Modules/MatrixUnitTests.bas
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Attribute VB_Name = "MatrixUnitTests"
Public Function RunTests()

Dim TestConfig As iTestableProject
Expand Down