-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Features: | ||
|
||
Method Usage Identification: The plugin scans the entire codebase to locate all occurrences of the target method, mapping out its usage across different modules and classes. | ||
|
||
Dependent Test Execution: For each identified usage, the plugin triggers the execution of existing test cases. This means it not only runs the tests for the target method but also for each calling method, ensuring thorough verification of code changes. | ||
|
||
Impact Analysis: By executing tests for all interconnected methods, the plugin helps developers understand the ripple effect of modifications in a single method, promoting safer refactorings and updates. | ||
|
||
Integration with Testing Frameworks: Built to integrate seamlessly with popular testing frameworks, allowing it to fit naturally into existing development workflows without requiring significant process changes. | ||
|
||
Improves Code Reliability: Ensures that changes do not inadvertently affect other parts of the application, thus increasing the reliability and stability of the code. | ||
|
||
## How To Use: | ||
|
||
1. Download the zip file. | ||
2. In IntelliJ, go to Preferences and click on Plugins, then click the gear icon. | ||
3. Select "Install Plugin from Disk." | ||
4. Choose the downloaded file. | ||
5. Restart IntelliJ. | ||
6. Right-click on the method you want to test and select "Run Related Tests." | ||
7. Testing is complete. |