File tree Expand file tree Collapse file tree 3 files changed +11
-31
lines changed
java/edu/rit/se/testsmells
resources/META-INF/MANIFEST.MF/META-INF Expand file tree Collapse file tree 3 files changed +11
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,18 +11,22 @@ public class Main {
1111 static List <TestFile > testFiles ;
1212
1313 public static void main (String [] args ) throws IOException {
14+ System .out .println ("Started!" );
15+
1416 MappingDetector mappingDetector ;
15- BufferedReader in = new BufferedReader (new FileReader ("G :\\ TestFileMapping\\ TestFile_Tag .csv" ));
17+ BufferedReader in = new BufferedReader (new FileReader ("F :\\ Projects \\ TestFileMapping\\ detected_testFile .csv" ));
1618 String str ;
1719
1820 testFiles = new ArrayList <>();
1921
22+ System .out .println ("Reading input." );
2023 while ((str = in .readLine ()) != null ) {
24+ System .out .println ("Detecting: " +str );
2125 mappingDetector = new MappingDetector ();
2226 testFiles .add (mappingDetector .detectMapping (str ));
2327 }
2428
25-
29+ System . out . println ( "Saving results. Total lines:" + testFiles . size ());
2630 ResultsWriter resultsWriter = ResultsWriter .createResultsWriter ();
2731 List <String > columnNames = new ArrayList <>();
2832 List <String > columnValues = null ;
@@ -44,5 +48,7 @@ public static void main(String[] args) throws IOException {
4448 columnValues .add (5 ,testFiles .get (i ).getRelativeProductionFilePath ());
4549 resultsWriter .writeLine (columnValues );
4650 }
51+
52+ System .out .println ("Completed!" );
4753 }
4854}
Original file line number Diff line number Diff line change 1+ Manifest-Version : 1.0
2+ Main-Class : edu.rit.se.testsmells.Main
3+
You can’t perform that action at this time.
0 commit comments