Giter Site home page Giter Site logo

Comments (6)

BurntSushi avatar BurntSushi commented on August 11, 2024

I personally kind of like writing TestResult::discard because it's more explicit what's going on. I don't feel terribly strongly though.

from quickcheck.

porglezomp avatar porglezomp commented on August 11, 2024

I think TestResult is much clearer, and it's not very inconvenient in my opinion.

from quickcheck.

andrewhickman avatar andrewhickman commented on August 11, 2024

This would be nice for use with the checked_ functions e.g.

#[quickcheck]
fn test_div_rem(a: i64, b: i64) -> Option<bool> {
    let div = a.checked_div(b)?;
    let rem = a.checked_rem(b)?;
    Some(div * b + rem == a)
}

from quickcheck.

tobz1000 avatar tobz1000 commented on August 11, 2024

Has this been reconsidered? I'd be happy to submit a PR.

The more ideal solution would probably be to implement the Try trait for TestResult, allowing for early return of TestResult::discard(), but it doesn't look like the trait will stabilise any time soon.

from quickcheck.

BurntSushi avatar BurntSushi commented on August 11, 2024

I remain unconvinced that this is worth doing. I'd rather see tests being explicitly discarded.

from quickcheck.

neithernut avatar neithernut commented on August 11, 2024

Types like the one drafted in #281 (whether they are part of this library or implemented on the user's side) create use-cases where returning an Option would be preferable to the alternatives imo. Consider something like the following:

fn revrev(original: u128) -> Option<Equivalence<u128>> {
    if original == u128::MAX {
        // for some reason, u128::MAX must be ignored for the test
        None
    } else {
        // pseudo idendity
        Some(Equivalence::of(xs, revrev))
    }
}

Without an Testable implementation for Option, we'd need to write something like:

fn revrev(original: u128) -> TestResult {
    if original == u128::MAX {
        // for some reason, u128::MAX must be ignored for the test
        TestResult::discard()
    } else {
        // pseudo idendity
        Equivalence::of(xs, revrev).into_result(Gen::new(0))
    }
}

... with the very unsightly Gen::new(0) which shouldn't even used in the conversion, if it is a conversion. That is, unless there is some other way to convert Equivalence into a TestResult. Such a function could be mandated for such convenience types, but it would require manually writing such a conversion for all those types (or introduce a trait explicitly for such conversions and maybe impl Testable via that trait for the conversion case).

Of course, discarding a test/value explicitly would be far more expressive. And I myself am not sure whether using an Option is really intuitive or whether it would confuse some users. Maybe a type expressing this intend explicitly would be worth considering?

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.