From: Manish Khettry Date: Wed, 25 Apr 2012 22:58:14 +0000 (-0700) Subject: for now a print statement to see that the tap reporter is invoked X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fsbt-tap;a=commitdiff_plain;h=0d6d07845b3e97665a40ae65c3b84a8f84edf991 for now a print statement to see that the tap reporter is invoked --- diff --git a/src/main/scala/SbtTapReporting.scala b/src/main/scala/SbtTapReporting.scala index c6e0068..20d8b7c 100644 --- a/src/main/scala/SbtTapReporting.scala +++ b/src/main/scala/SbtTapReporting.scala @@ -21,6 +21,7 @@ class SbtTapListener extends TestsListener { var fileWriter: FileWriter = _ override def doInit { + println("doInit called in sbt tap plugin") new File("test-results").mkdirs() fileWriter = new FileWriter("test-results/test.tap")