Skip to content
#

mutation-testing

Here are 200 public repositories matching this topic...

abingham
abingham commented May 17, 2021

Right now the sphinx-apidoc results are part of the repo, but there's no real reason for that. We should be able to generate those docs on demand whenever we build the sphinx project.

docs good first issue
stryker4s
xd009642
xd009642 commented Feb 13, 2022

So a pattern I've seen a number of places in rust code (and have in my own code in places) is:

impl SomeStruct {
	pub fn new() -> Self {
	    Self::default()
    }
}

In cargo-mutants it will take this function and apply the Default mutagen to it creating code that is equivalent to the source code and then register as not caught. This could be solved by #[mutants::skip]

enhancement good first issue

Improve this page

Add a description, image, and links to the mutation-testing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mutation-testing topic, visit your repo's landing page and select "manage topics."

Learn more