When I load SUnit in pharoBox

There is no SUnit package in PharoInbox.
Are you referring to SUnitGUI-AlexandreBergel.15.mcz in Pharo? Obviously we should not have saved this file in Pharo, but in PharoInbox rather. I apologize for this.

SUnitGUI-AlexandreBergel.15.mcz expects the method generateLastRunMethodNamed:for: to be present. This method is provided by two packages that may be found in PharoTreatedInbox.

However there is something strange, the following method has disappeared from the image (I tried with an Core 10133 updated):
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
TestResult>>runCase: aTestCase
        | testCasePassed |
        testCasePassed := true.
        [[aTestCase runCase]
                        on: self class failure
                        do:
                                [:signal |
                                failures add: aTestCase.
                                testCasePassed := false.
                                signal return: false]]
                                        on: self class error
                                        do:
                                                [:signal |
                                                errors add: aTestCase.
                                                testCasePassed := false.
                                                signal return: false].
        testCasePassed ifTrue: [passed add: aTestCase]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Is there any reason for this? Our extension on storing results will have to be updated then...

Alexandre


I cannot run tests anymore!
David Alex can you really check?

Guys I appreciate your work but it would be great if you could test more what you are doing because I spent a lot of time on problems like that.

Stef



_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to