Skip to content

Commit 4cd337d

Browse files
committed
v2.0.0-beta
1 parent acedf94 commit 4cd337d

7 files changed

Lines changed: 18 additions & 10 deletions

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Ignore temporary Excel files
1+
# Ignore temporary Excel files and OS files
22
*/~$*
3-
4-
# Ignore scratch work and other files
5-
_scratch
6-
.DS_Store
3+
.DS_Store

Excel-TDD - Blank - Inline.xlsm

-36.5 KB
Binary file not shown.

Excel-TDD - Blank.xlsm

-42.1 KB
Binary file not shown.

specs/Excel-TDD - Specs.xlsm

1.34 KB
Binary file not shown.

src/ImmediateReporter.cls

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' ImmediateReporter v2.0.0-alpha
11+
' ImmediateReporter v2.0.0-beta
1212
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
1313
'
1414
' Report results to Immediate Window
@@ -17,6 +17,12 @@ Attribute VB_Exposed = True
1717
' @author tim.hall.engr@gmail.com
1818
' @license MIT (http://www.opensource.org/licenses/mit-license.php)
1919
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
20+
Option Explicit
21+
22+
' --------------------------------------------- '
23+
' Constants and Private Variables
24+
' --------------------------------------------- '
25+
2026
Private WithEvents pSpecs As SpecSuite
2127
Attribute pSpecs.VB_VarHelpID = -1
2228
Private Finished As Boolean

src/SpecSuite.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' SpecSuite v2.0.0-alpha
11+
' SpecSuite v2.0.0-beta
1212
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
1313
'
1414
' A collection of specs and results

src/WorkbookReporter.cls

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' DisplayReporter v2.0.0-alpha
11+
' DisplayReporter v2.0.0-beta
1212
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
1313
'
1414
' Report results to Worksheet
@@ -17,6 +17,12 @@ Attribute VB_Exposed = True
1717
' @author tim.hall.engr@gmail.com
1818
' @license MIT (http://www.opensource.org/licenses/mit-license.php)
1919
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
20+
Option Explicit
21+
22+
' --------------------------------------------- '
23+
' Constants and Private Variables
24+
' --------------------------------------------- '
25+
2026
Private Const ProgressWidth As Long = 128
2127
Private pSheet As Worksheet
2228
Private pCount As Long
@@ -194,8 +200,7 @@ Private Sub DisplayResults()
194200
For Each Divider In Dividers
195201
With pSheet.Range(pSheet.Cells(StartRow + Divider, StartColumn), pSheet.Cells(StartRow + Divider, StartColumn + 1)).Borders(xlEdgeTop)
196202
.LineStyle = xlContinuous
197-
.ThemeColor = 1
198-
.TintAndShade = -0.249946592608417
203+
.Color = VBA.RGB(191, 191, 191)
199204
.Weight = xlThin
200205
End With
201206
Next Divider

0 commit comments

Comments
 (0)