GithubHelp home page GithubHelp logo

Comments (4)

sf105 avatar sf105 commented on July 2, 2024

I think you're missing the point here. Matchers just tell us whether an argument matches given criteria, not whether there's a bug in the code being tested. It's up to the caller of the matcher to decide what to do with the information. Also, matchers might be called repeatedly against multiple arguments to find the one that's right.

In this case, the criteria include that the argument is of a given type.

from javahamcrest.

snellm avatar snellm commented on July 2, 2024

Perhaps, and I think your argument is stronger for test code, but not when Hamcrest is used in production code.

I could post examples of production bugs in a system we're both familiar with which are due to developers thinking TypeSafeMatcher is a matcher which adds runtime type safety to Matcher, which it doesn't - in fact it makes runtime code less type safe since it obscures cases where the wrong type is passed by assuming that false should be returned. It might be clearer if it was called "TypeCheckingMatcher"?

from javahamcrest.

sf105 avatar sf105 commented on July 2, 2024

you're probably right that it's misnamed, but it's hard to fix that now. The current contract of a matchers is that it will not explode but just return true or false. If you need something else, then you might be better off to fork your own version.

from javahamcrest.

snellm avatar snellm commented on July 2, 2024

We will patch locally, and in the longer term look at migrating at least our production code off Hamcrest.

PS Here's a example of the sort of bug we've found - this has been present in the codebase since 2009, but nobody has noticed that the assert can never fail, despite this helper method being used in many tests:

    public void assertDoesNotContains(Class... classes) {
        List<Class> listofClasses = getListOfClasses();
        for (Class aClass : classes) {
            assertThat(listofClasses, not(Matchers.typeCompatibleWith(aClass)));
        }
    }

from javahamcrest.

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.