Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tan9/mockito-unnecessary-stubbings
https://github.com/tan9/mockito-unnecessary-stubbings
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tan9/mockito-unnecessary-stubbings
- Owner: tan9
- Created: 2017-10-30T06:19:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T06:57:37.000Z (about 7 years ago)
- Last Synced: 2024-12-09T18:44:19.988Z (about 1 month ago)
- Language: Shell
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- 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.