Giter Site home page Giter Site logo

Comments (3)

tomjakubowski avatar tomjakubowski commented on August 11, 2024

You can pass a filter to the test runner which is a regex matching test names you'd like to run.

So if you have a src/lib.rs like:

#[quickcheck]
fn double_reversal_is_identity(xs: Vec<int>) -> bool {
    xs == reverse(reverse(xs.as_slice()).as_slice())
}

#[quickcheck]
fn a_failing_test(xs: Vec<int>) -> bool {
    xs == reverse(xs.as_slice())
}

With Cargo, you can run:

$ cargo test -- "double_reversal_is_identity"

so that only the double_reversal_is_identity test is run (arguments after the -- are passed directly to the test runner). If you're building the test runner yourself:

$ rustc --test src/lib.rs && ./lib double_reversal_is_identity

should do the trick. This also works for ordinary #[test] functions.

See cargo test --help which lists options and arguments for the cargo test command, and cargo test -- --help which lists options and arguments for the test runner itself, for more information.

from quickcheck.

huonw avatar huonw commented on August 11, 2024

The testing guide has more info too.

from quickcheck.

tolgap avatar tolgap commented on August 11, 2024

@tomjakubowski @huonw thank you guys, that's more than enough info/documentation 👍

from quickcheck.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.