File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
testing/Project/Sources/Classes Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ testing/Project/Sources/Classes/
117117├── TestRunner.4dm # Main test orchestration
118118├── TestSuite.4dm # Individual test class management
119119├── TestFunction.4dm # Single test execution & tagging
120- ├── TestAssertion .4dm # Assertion library
120+ ├── Assert .4dm # Assertion library
121121├── Testing.4dm # Test context
122122├── TaggingExampleTest.4dm # Tagging examples
123123├── TaggingSystemTest.4dm # Tagging functionality tests
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ testing/Project/Sources/Classes/
116116├── TestRunner.4dm # Main test orchestration
117117├── TestSuite.4dm # Individual test class management
118118├── TestFunction.4dm # Single test execution & tagging
119- ├── TestAssertion .4dm # Assertion library
119+ ├── Assert .4dm # Assertion library
120120├── Testing.4dm # Test context
121121├── TaggingExampleTest.4dm # Tagging examples
122122├── TaggingSystemTest.4dm # Tagging functionality tests
Original file line number Diff line number Diff line change @@ -708,7 +708,7 @@ jobs:
708708- **`cs.Testing`**: Test context with built-in assertion and mocking utilities
709709 - **`$t.assert`**: Built-in assertion library for test validation
710710 - **`$t.stats`**: Built-in `UnitStatsTracker` instance for function mocking
711- - **`cs.TestAssertion `**: Assertion implementation class
711+ - **`cs.Assert `**: Assertion implementation class
712712- **`cs.UnitStatsTracker`**: Mock tracking implementation class with Formula-based mocking
713713- **`cs.UnitStatsDetail`**: Detailed call statistics with methods:
714714 - `.getNumberOfCalls()` : Returns number of times the function was called
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ property failed : Boolean
44property done : Boolean
55property logMessages : Collection
66property assertions : Collection
7- property assert : cs:C1710 .TestAssertion
7+ property assert : cs:C1710 .Assert
88property stats : cs:C1710 .UnitStatsTracker
99property failureCallChain : Collection
1010property classInstance : 4D:C1709 .Object
@@ -14,7 +14,7 @@ Class constructor()
1414 This:C1470 .done := False:C215
1515 This:C1470 .logMessages := []
1616 This:C1470 .assertions := []
17- This:C1470 .assert := cs:C1710 .TestAssertion .new ()
17+ This:C1470 .assert := cs:C1710 .Assert .new ()
1818 This:C1470 .stats := cs:C1710 .UnitStatsTracker .new ()
1919 This:C1470 .failureCallChain := Null
2020
You can’t perform that action at this time.
0 commit comments