aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-02-23 14:56:12 -0600
committerJesse Luehrs <doy@tozt.net>2013-02-23 14:56:12 -0600
commit6d4f400455f40561c853393249cda97f832ce61f (patch)
treef7933ff6e2fbf9d5bde9e00544e75702c70e1d64 /src/test
parent987ecfb806b140afd955a58d1834bade02c0ca2c (diff)
downloadscala-test-more-6d4f400455f40561c853393249cda97f832ce61f.tar.gz
scala-test-more-6d4f400455f40561c853393249cda97f832ce61f.zip
allow extensions to get the correct stack trace
better implementation ideas here would be nice
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/org/perl8/test/ExtensionTest.scala55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/test/scala/org/perl8/test/ExtensionTest.scala b/src/test/scala/org/perl8/test/ExtensionTest.scala
new file mode 100644
index 0000000..e616d3e
--- /dev/null
+++ b/src/test/scala/org/perl8/test/ExtensionTest.scala
@@ -0,0 +1,55 @@
+package org.perl8.test
+
+import java.io.ByteArrayOutputStream
+
+trait NumberZero { this: TestMore =>
+ def is_zero (i: Int, desc: String): Boolean = {
+ withLevel(1) {
+ is(i, 0, desc)
+ }
+ }
+}
+
+trait NumberZeroWrapped extends NumberZero { this: TestMore =>
+ def isZero (i: Int): Boolean = {
+ withLevel(1) {
+ is_zero(i, "the number is zero")
+ }
+ }
+}
+
+class ExtensionTest extends TestMore {
+ private class ExtensionTestTest extends TestMore with NumberZeroWrapped {
+ is_zero(0, "it's zero")
+ is_zero(1, "it's not zero")
+ isZero(0)
+ isZero(1)
+ }
+
+ val out = new ByteArrayOutputStream
+ val exitCode = Console.withOut(out) {
+ Console.withErr(out) {
+ (new ExtensionTestTest).run
+ }
+ }
+
+ is(exitCode, 2)
+
+ val tap =
+ "ok 1 - it's zero\n" +
+ "not ok 2 - it's not zero\n" +
+ "# Failed test 'it's not zero'\n" +
+ "# at ExtensionTest.scala line 24.\n" +
+ "# got: '1'\n" +
+ "# expected: '0'\n" +
+ "ok 3 - the number is zero\n" +
+ "not ok 4 - the number is zero\n" +
+ "# Failed test 'the number is zero'\n" +
+ "# at ExtensionTest.scala line 26.\n" +
+ "# got: '1'\n" +
+ "# expected: '0'\n" +
+ "1..4\n" +
+ "# Looks like you failed 2 tests of 4.\n"
+
+ is(out.toString, tap)
+}