|
|
|
|
|
by timbilt
556 days ago
|
|
> validates each test to ensure it runs successfully, passes, and increases code coverage This seems to be based on the cover agent open source which implements Meta's TestGen-LLM paper.
https://www.qodo.ai/blog/we-created-the-first-open-source-im... After generating each test, it's automatically run — it needs to pass and increase coverage, otherwise it's discarded. This means you're guaranteed to get working tests that aren't repetitions of existing tests. You just need to do a quick review to check that they aren't doing something strange and they're good to go. |
|
What purpose does this serve besides the bragging rights of 'we need 90% coverage otherwise Sonarqube fails the build'?