Martin Pool
Martin Pool
Hey, thanks for pointing out this use case in jj (which is a project I was excited to read about, too.) I think something like `--test-all-packages` or `--test-package=A,B,C` would make...
cc @panarch
For what it's worth it does seem to build on macOS using the Homebrew versions of libusb and rtlsdr: #44 For Windows and cross-platform support another option might be vcpkg...
You should be able to say `--cargo-arg=--profile=mutants`
The immediate cause here is that the `exclude_re` matches against the mutant name, and these mutants don't include the impl/fn name. So I think there are two possibly complementary fixes:...
Great, thanks for letting me know.
Adding a table of heuristics that are known to be equivalent seems like the most immediately tractable thing. I don't know about running the code as a way to detect...
That would be a step beyond adding more heuristic name-based assumptions that, say, `new` typically means the same as `default()`, etc. I think it would be important to be clear...
If you did not see it you might read about my overall thinking on this balance.
> My experience is that there‘s a lot of small functions that don’t feel worth writing tests for, because there is a sense in which the most reasonable test would...