-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the project to remove references to "app" and "tag" in the de…
…tection/output as this is no longer required. Updated the README.md with details on how to run the tool.
- Loading branch information
Showing
4 changed files
with
42 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# TestFileMapping | ||
This program maps the specified test file with the the production (SUT) file | ||
|
||
## Prerequisites | ||
A csv file containing the path of the test file and the directory containing the source files. This file needs to be passed as input. | ||
|
||
Example of the structure of this file: | ||
|
||
` | ||
C:\Projects\MyProject\src\main,C:\Projects\MyProject\src\test\java\org\example\common\PluginResourceBundleTest.java | ||
C:\Projects\MyProject\src\main,C:\Projects\MyProject\src\test\java\org\example\inspection\ConditionalInspectionTest.java | ||
C:\Projects\MyProject\src\main,C:\Projects\MyProject\src\test\java\org\example\inspection\DuplicateInspectionTest.java | ||
C:\Projects\MyProject\src\main,C:\Projects\MyProject\src\test\java\org\example\inspection\GeneralInspectionTest.java | ||
` | ||
|
||
## Usage | ||
Run the jar file: | ||
|
||
`C:\Projects\TestFileMapping>java -jar TestFileMapping.jar C:\Work\input.csv` | ||
|
||
## Output | ||
The output csv file will be saved in the same directory as the jar. The file will contain the path of the test file and the corresponding production file (if found). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters