We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current TestConsoleMain prints something like:
some test failed due to failed assertion: (no message), expected: 3, actual: 11
It is hard to find where test failed if test has many assertions declared in different methods. Need stack trace.
The text was updated successfully, but these errors were encountered:
Imported From: https://issues.scala-lang.org/browse/SI-141?orig=1 Reporter: @stepancheg
Sorry, something went wrong.
@michelou said: Fixed in rev 12973
Stack trace now appears in output; override method enableStackTrace to disable it.
enableStackTrace
class Test1 extends TestCase("Test1") { //override def enableStackTrace = false def runTest() { assertEquals("1: ", 3, 1) } }
@odersky said: Milestone 2.6.1 deleted
No branches or pull requests
Current TestConsoleMain prints something like:
It is hard to find where test failed if test has many assertions declared in different methods. Need stack trace.
The text was updated successfully, but these errors were encountered: