Is there a tool similar to emma, that reports which test covers a specific implementation ?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
In case you want to see, which tests cover which line of code, you may use Clover that shows you:
To see what one can expect from Clover, here is a screenshot:
If you don't want to bother paying / setting up Cover, a much simpler way is:
This methods also allows you to see how many times a line is covered and all the tests calling it.