-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
CoreUpdates/6864-SUnit-fixes-JuanVuletich-2024Nov27-18h41m-jmv.001.cs.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'From Cuis7.1 [latest update: #6863] on 27 November 2024 at 6:49:37 pm'! | ||
|
||
!TestRunner methodsFor: 'logging' stamp: 'jmv 11/27/2024 18:44:41'! | ||
showResult | ||
|
||
self errorLog newLine; newLine; show: '==== SUnit ======== Start ===='. | ||
self errorLog print: self result. | ||
self errorLog newLine; show: '==== SUnit ========== End ===='; newLine.! ! | ||
|
||
|
||
!TestResult methodsFor: 'testing' stamp: 'jmv 11/27/2024 18:48:54'! | ||
hasErrors | ||
|
||
^self unexpectedErrors notEmpty | ||
! ! | ||
|
||
!TestResult methodsFor: 'testing' stamp: 'jmv 11/27/2024 18:49:06'! | ||
hasFailures | ||
|
||
^self unexpectedFailures notEmpty | ||
! ! | ||
|
||
!methodRemoval: TestRunner #showResultSummary stamp: 'jmv 11/27/2024 18:44:47'! | ||
TestRunner removeSelector: #showResultSummary! | ||
!methodRemoval: TestRunner #showResultDefects stamp: 'jmv 11/27/2024 18:44:44'! | ||
TestRunner removeSelector: #showResultDefects! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters