PS: I ran all tests in a fresh trunk image before and after loading the changeset, there were no regressions.


Von: Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von Thiede, Christoph
Gesendet: Dienstag, 29. September 2020 01:18:07
An: Squeak Dev
Betreff: [squeak-dev] ResumableTestFailure
 

Hi all! :-)


I was just working a bit with Squeak by Example (the book) and found out that resumable assertions as described in the book (see chapter SUnit, Advanced, Continuing after a failure) do not any longer work in a trunk image. If you write a test case with some resumable assertions, turn on logging, and run the test, only the first failure will be logged, not the rest, too.


(Methods to reproduce:

isLogging

    ^  true "You will need to open a Transcript"

testResumable

    #(1 2 3 4 5) do: [:i |

        self assert: i even description: ['{1} is not even' format: {i}] resumable: true]

)


A second issue I experienced frequently when I felt the desire to work with resumable assertions was that they are basically only available for two selectors: #assert:description:resumable: and #deny:description:identical:. I often would like to insert a resumable into any test without being that verbose, and nearly redoubling the number of assertion selectors by adding a resumable argument to each of them did not feel right, either.


Please find the attached changeset, which fixes both issues.


Looking forward to your review! :-)


Best,

Christoph