Advanced testing for rustworkx-core
#1390
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
What is the expected enhancement?
Currently, we test
rustworkx
with unit tests in Python and we testrustworkx-core
with unit tests and doctests in Rust.Because
rustworkx-core
is written completely in Rust and has a simpler testing setup (no need for tools that understand two languages), we could run some more advanced tests for it:cargo-mutants
to find lines of code that are covered by tests but do not cause test failurescargo-fuzz
, most likely to find panicsquickcheck
to generate randomized tests that are strongerThe text was updated successfully, but these errors were encountered: