Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Luis MajanoLuis MajanoReporter
Adam CameronAdam CameronComponents
Fix versions
Priority
Major
Details
Details
Assignee
Luis Majano
Luis MajanoReporter
Adam Cameron
Adam CameronComponents
Fix versions
Priority
Sentry
Sentry
Sentry
Created January 21, 2014 at 9:19 AM
Updated January 21, 2014 at 6:58 PM
Resolved January 21, 2014 at 6:58 PM
This is perhaps not important.
We have a situation where we have TestChild extending TestParent, which extends TestCase. TestParent *used to * have a
setup()
method at some stage, andTestChild
calledsuper.setup()
in its ownsetup()
. All good.Then at some stage
setup()
was removed fromTestParent
, soTestChild
'ssuper.setup()
was callingTestCase
'ssetup()
. MXUNit has asetup()
inTestCase
. TestBox does not. Therefore our tests error.But, as I said, this is more being caught out by sloppy code on our end, but figured I'd let you know anyhow.