https://github.com/tan9/mockito-unnecessary-stubbings
https://github.com/tan9/mockito-unnecessary-stubbings
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tan9/mockito-unnecessary-stubbings
- Owner: tan9
- Created: 2017-10-30T06:19:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T06:57:37.000Z (over 7 years ago)
- Last Synced: 2025-04-02T05:35:21.577Z (3 months ago)
- Language: Shell
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
When only run on partial of test cases in a test class, no UnnecessaryStubbingException will be thrown, for example:
```bash
# only run test `a`, `b` among all three cases, the test will pass
./mvnw -Dtest=FooTest#a+b test
```This behavior making developers hard to focus on **unit** of tests to fix.