The Trunk: SUnit-ul.82.mcz

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

The Trunk: SUnit-ul.82.mcz

commits-2
Levente Uzonyi uploaded a new version of SUnit to project The Trunk:
http://source.squeak.org/trunk/SUnit-ul.82.mcz

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

Name: SUnit-ul.82
Author: ul
Time: 11 October 2010, 2:52:13.253 am
UUID: 6ab7bb29-cb0a-7c49-be47-a00a0ac3da2a
Ancestors: SUnit-nice.81

- keep and restore the value of the "Run long test cases" preference when running LongTestCaseTest

=============== Diff against SUnit-nice.81 ===============

Item was changed:
  TestCase subclass: #LongTestCaseTest
+ instanceVariableNames: 'preferenceValue'
- instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
  category: 'SUnit-Extensions'!

Item was added:
+ ----- Method: LongTestCaseTest>>setUp (in category 'as yet unclassified') -----
+ setUp
+
+ preferenceValue := LongTestCase shouldRun!

Item was added:
+ ----- Method: LongTestCaseTest>>tearDown (in category 'as yet unclassified') -----
+ tearDown
+
+ LongTestCase shouldRun: preferenceValue!