April 10, 2009
7:06 p.m.
Hi folks, 90% of my tests just test equality of a result to an expected value, so I waste time trying to find out what the mismatch is. Would be nice to have this method in SUnit: assert: result equals: expected result = expected ifFalse: [self signalFailure: 'Assertion failed: (' , result asString , ') ~= (' , expected asString , ')'] Does anyone see a downside, or possible improvements? - on