File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
approvaltests/src/main/java/org/approvaltests/reporters/linux Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 66
77import java .io .File ;
88
9- public class CyberDojoReporter extends GenericDiffReporter
9+ public class ReportByCreatingDiffFile extends GenericDiffReporter
1010{
1111 private static DiffInfo info = new DiffInfo ("/usr/bin/diff" ,
1212 GenericDiffReporter .TEXT_FILE_EXTENSIONS );
13- public static final CyberDojoReporter INSTANCE = new CyberDojoReporter ();
14- public CyberDojoReporter ()
13+ public static final ReportByCreatingDiffFile INSTANCE = new ReportByCreatingDiffFile ();
14+ public ReportByCreatingDiffFile ()
1515 {
1616 super (info );
1717 }
Original file line number Diff line number Diff line change 1+ package org .approvaltests .reporters .linux ;
2+
3+ import org .approvaltests .reporters .JunitReporter ;
4+ import org .approvaltests .reporters .MultiReporter ;
5+
6+ public class ReportOnCyberDojo extends MultiReporter
7+ {
8+ public static final ReportOnCyberDojo INSTANCE = new ReportOnCyberDojo ();
9+ public ReportOnCyberDojo ()
10+ {
11+ super (ReportByCreatingDiffFile .INSTANCE , JunitReporter .INSTANCE );
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments