go-mutesting icon indicating copy to clipboard operation
go-mutesting copied to clipboard

Mutation testing for Go source code. Fork from https://github.com/zimmski/go-mutesting

Results 16 go-mutesting issues
Sort by recently updated
recently updated
newest added

For better readability, compare (suggestion): ```diff --- Original +++ New @@ -19,7 +19,7 @@ // UploadFile Upload a given file to the Media Endpoint func UploadFile(accessToken string, endpoint string, filePath...

To allow use more easily in CI systems that expect non-zero commands when i.e. failing tests, we should update the command to produce an error when any/a configurable % of...

Are there any plans to support golang 1.18+? UPD: Are there any plans to support generics?

To keep on top of our dependency updates, we should automate it with Dependabot.

First of all, thank you for your project! We have just started using mutation test and the very first question is about performance. It look quite a while to run...

Support CI mode. Process fails, if the minimum threshold is not exceeded

I have the following code: ``` package mutation type Calculator struct { } func (c *Calculator) Multiply(a int, b int) int { return a * b } ``` ``` package...

hi, ask about how i can implement this go-mutesting in pipeline CI/CD gitlab with go version >= 1.18? thanks