File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77public class Main {
88 public static void main (String [] args ) throws IOException {
9- final String rootDirectory = "G :\\ Android \\ Apps " ;
9+ final String rootDirectory = "C :\\ Projects \\ TestSmells \\ testing " ;
1010
1111 //recursively identify all 'java' files in the specified directory
12- Util .writeOperationLogEntry ("Identify all 'java' files" , Util .OperationStatus .Started );
12+ Util .writeOperationLogEntry ("Identify all 'java' test files" , Util .OperationStatus .Started );
1313 FileWalker fw = new FileWalker ();
14- List <FileEntity > files = fw .getJavaFiles (rootDirectory , true );
15- Util .writeOperationLogEntry ("Identify all 'java' files" , Util .OperationStatus .Completed );
14+ List <FileEntity > files = fw .getJavaTestFiles (rootDirectory , true );
15+ Util .writeOperationLogEntry ("Identify all 'java' test files" , Util .OperationStatus .Completed );
1616
1717
1818 //foreach of the identified 'java' files, obtain details about the methods that they contain
You can’t perform that action at this time.
0 commit comments