Laura Vendramini wrote:
Hey,

Is there a way to output to a  file (using maven 2) exactly what is
printed in the console?


Just configure the scenarios to use a PrintStreamScenarioReporter with an appropriate instance of PrintStream, eg by extending the default configuration:

new MostUsefulConfiguration(){

 public ScenarioReporter forReportingScenarios(){
        return new PrintStream(new File("/path/to/your/output")).
 }

}


Cheers


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to