The Inbox: SUnitGUI-mt.74.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: SUnitGUI-mt.74.mcz

commits-2
A new version of SUnitGUI was added to project The Inbox:
http://source.squeak.org/inbox/SUnitGUI-mt.74.mcz

==================== Summary ====================

Name: SUnitGUI-mt.74
Author: mt
Time: 9 September 2019, 4:40:33.402661 pm
UUID: 99859e65-22a5-4b93-9876-8bb1dcd3cc39
Ancestors: SUnitGUI-mt.73

Adds time measurement for tests without changing TestCase, which is important for smalltalkCi.

We still need terminology better than "measured" ... :-)

=============== Diff against SUnitGUI-mt.73 ===============

Item was changed:
  ----- Method: TestRunner>>buttons (in category 'accessing-ui') -----
  buttons
+ ^ #(( 'Run Selected' #runAllMeasured #hasRunnable )
- ^ #(( 'Run Selected' #runAll #hasRunnable )
  ( 'Run Profiled' #runProfiled #hasRunnable )
  ( 'Run Coverage' #runCoverage #hasRunnable )
  ( 'Run Failures' #runFailures #hasFailures )
  ( 'Run Errors' #runErrors #hasErrors ))!

Item was added:
+ ----- Method: TestRunner>>runAllMeasured (in category 'actions - measured') -----
+ runAllMeasured
+
+ self
+ reset;
+ runSuiteMeasured: self suiteAll;
+ saveResultInHistory.!

Item was added:
+ ----- Method: TestRunner>>runSuiteMeasured: (in category 'actions - measured') -----
+ runSuiteMeasured: aTestSuite
+ self basicRunSuite: aTestSuite do: [ :each | self runTestMeasured: each ].
+ self updateResults
+
+ !

Item was added:
+ ----- Method: TestRunner>>runTestMeasured: (in category 'actions - measured') -----
+ runTestMeasured: aTestCase
+ result runCaseMeasured: aTestCase.
+ self updateStatus: true.!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: SUnitGUI-mt.74.mcz

Jakob Reschke
runSuiteAndMeasureTime:?

<[hidden email]> schrieb am Mo., 9. Sep. 2019, 16:40:
A new version of SUnitGUI was added to project The Inbox:
http://source.squeak.org/inbox/SUnitGUI-mt.74.mcz

==================== Summary ====================

Name: SUnitGUI-mt.74
Author: mt
Time: 9 September 2019, 4:40:33.402661 pm
UUID: 99859e65-22a5-4b93-9876-8bb1dcd3cc39
Ancestors: SUnitGUI-mt.73

Adds time measurement for tests without changing TestCase, which is important for smalltalkCi.

We still need terminology better than "measured" ... :-)

=============== Diff against SUnitGUI-mt.73 ===============

Item was changed:
  ----- Method: TestRunner>>buttons (in category 'accessing-ui') -----
  buttons
+       ^ #(( 'Run Selected' #runAllMeasured #hasRunnable )
-       ^ #(( 'Run Selected' #runAll #hasRunnable )
                ( 'Run Profiled' #runProfiled #hasRunnable )
                ( 'Run Coverage' #runCoverage #hasRunnable )
                ( 'Run Failures' #runFailures #hasFailures )
                ( 'Run Errors' #runErrors #hasErrors ))!

Item was added:
+ ----- Method: TestRunner>>runAllMeasured (in category 'actions - measured') -----
+ runAllMeasured
+
+       self
+               reset;
+               runSuiteMeasured: self suiteAll;
+               saveResultInHistory.!

Item was added:
+ ----- Method: TestRunner>>runSuiteMeasured: (in category 'actions - measured') -----
+ runSuiteMeasured: aTestSuite
+       self basicRunSuite: aTestSuite do: [ :each | self runTestMeasured: each ].
+       self updateResults
+
+ !

Item was added:
+ ----- Method: TestRunner>>runTestMeasured: (in category 'actions - measured') -----
+ runTestMeasured: aTestCase
+       result runCaseMeasured: aTestCase.
+       self updateStatus: true.!




Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: SUnitGUI-mt.74.mcz

Chris Muller-3
Wouldn't it be nicer if it simply always measured, and we left the API clean?


On Mon, Sep 9, 2019 at 12:03 PM Jakob Reschke <[hidden email]> wrote:
runSuiteAndMeasureTime:?

<[hidden email]> schrieb am Mo., 9. Sep. 2019, 16:40:
A new version of SUnitGUI was added to project The Inbox:
http://source.squeak.org/inbox/SUnitGUI-mt.74.mcz

==================== Summary ====================

Name: SUnitGUI-mt.74
Author: mt
Time: 9 September 2019, 4:40:33.402661 pm
UUID: 99859e65-22a5-4b93-9876-8bb1dcd3cc39
Ancestors: SUnitGUI-mt.73

Adds time measurement for tests without changing TestCase, which is important for smalltalkCi.

We still need terminology better than "measured" ... :-)

=============== Diff against SUnitGUI-mt.73 ===============

Item was changed:
  ----- Method: TestRunner>>buttons (in category 'accessing-ui') -----
  buttons
+       ^ #(( 'Run Selected' #runAllMeasured #hasRunnable )
-       ^ #(( 'Run Selected' #runAll #hasRunnable )
                ( 'Run Profiled' #runProfiled #hasRunnable )
                ( 'Run Coverage' #runCoverage #hasRunnable )
                ( 'Run Failures' #runFailures #hasFailures )
                ( 'Run Errors' #runErrors #hasErrors ))!

Item was added:
+ ----- Method: TestRunner>>runAllMeasured (in category 'actions - measured') -----
+ runAllMeasured
+
+       self
+               reset;
+               runSuiteMeasured: self suiteAll;
+               saveResultInHistory.!

Item was added:
+ ----- Method: TestRunner>>runSuiteMeasured: (in category 'actions - measured') -----
+ runSuiteMeasured: aTestSuite
+       self basicRunSuite: aTestSuite do: [ :each | self runTestMeasured: each ].
+       self updateResults
+
+ !

Item was added:
+ ----- Method: TestRunner>>runTestMeasured: (in category 'actions - measured') -----
+ runTestMeasured: aTestCase
+       result runCaseMeasured: aTestCase.
+       self updateStatus: true.!





Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: SUnitGUI-mt.74.mcz

marcel.taeumel
Then we have double-measuring on smalltalkCI. :-)

Best,
Marcel

Am 10.09.2019 05:14:23 schrieb Chris Muller <[hidden email]>:

Wouldn't it be nicer if it simply always measured, and we left the API clean?


On Mon, Sep 9, 2019 at 12:03 PM Jakob Reschke <[hidden email]> wrote:
runSuiteAndMeasureTime:?

<[hidden email]> schrieb am Mo., 9. Sep. 2019, 16:40:
A new version of SUnitGUI was added to project The Inbox:
http://source.squeak.org/inbox/SUnitGUI-mt.74.mcz

==================== Summary ====================

Name: SUnitGUI-mt.74
Author: mt
Time: 9 September 2019, 4:40:33.402661 pm
UUID: 99859e65-22a5-4b93-9876-8bb1dcd3cc39
Ancestors: SUnitGUI-mt.73

Adds time measurement for tests without changing TestCase, which is important for smalltalkCi.

We still need terminology better than "measured" ... :-)

=============== Diff against SUnitGUI-mt.73 ===============

Item was changed:
  ----- Method: TestRunner>>buttons (in category 'accessing-ui') -----
  buttons
+       ^ #(( 'Run Selected' #runAllMeasured #hasRunnable )
-       ^ #(( 'Run Selected' #runAll #hasRunnable )
                ( 'Run Profiled' #runProfiled #hasRunnable )
                ( 'Run Coverage' #runCoverage #hasRunnable )
                ( 'Run Failures' #runFailures #hasFailures )
                ( 'Run Errors' #runErrors #hasErrors ))!

Item was added:
+ ----- Method: TestRunner>>runAllMeasured (in category 'actions - measured') -----
+ runAllMeasured
+
+       self
+               reset;
+               runSuiteMeasured: self suiteAll;
+               saveResultInHistory.!

Item was added:
+ ----- Method: TestRunner>>runSuiteMeasured: (in category 'actions - measured') -----
+ runSuiteMeasured: aTestSuite
+       self basicRunSuite: aTestSuite do: [ :each | self runTestMeasured: each ].
+       self updateResults
+
+ !

Item was added:
+ ----- Method: TestRunner>>runTestMeasured: (in category 'actions - measured') -----
+ runTestMeasured: aTestCase
+       result runCaseMeasured: aTestCase.
+       self updateStatus: true.!