GithubHelp home page GithubHelp logo

Comments (20)

durron597 avatar durron597 commented on July 2, 2024 3

I think the problem is that the version in CoreMatchers never got fixed

from javahamcrest.

durron597 avatar durron597 commented on July 2, 2024 1

I'm surprised this hasn't gotten more attention! This is a problem in the most obvious use case, i.e.

import static org.hamcrest.core.IsInstanceOf.*;
import static org.hamcrest.core.Is.*;

import org.junit.Test;

import static org.junit.Assert.*;

public class HamcrestTest {
    interface FooInterface { }
    class Foo implements FooInterface { }
    class FooBar extends Foo { }

    @Test
    public void isTest() {
        Foo someFoo = new FooBar();
        FooInterface interfaceRef = someFoo;
        assertThat(someFoo, isA(FooBar.class)); // Doesn't compile
        assertThat(interfaceRef, isA(Foo.class)); // Doesn't compile

        assertThat(someFoo, instanceOf(FooBar.class)); // Compiles correctly
        assertThat(interfaceRef, instanceOf(Foo.class)); // Compiles correctly
    }
}

from javahamcrest.

udalrich avatar udalrich commented on July 2, 2024 1

Any hope of this eventually being released?

from javahamcrest.

nhojpatrick avatar nhojpatrick commented on July 2, 2024 1

junit:4.13 depend on hamcrest-core:1.3 also has this problem

feel free to raise PR with junit so v4.14 could be upgrade to the latest version, that being currently org:hamcrest:hamcrest:2.2

v1.x is dead and out of support
v2.x i'm still trying to learn the guts and help with patches... so semi in support

from javahamcrest.

time4tea avatar time4tea commented on July 2, 2024

"completely wrong" were Nat's exact words btw - nothing to do with me.... :-)

from javahamcrest.

scarytom avatar scarytom commented on July 2, 2024

This is interesting in conjunction with some of Nat's other discussions on the matter:
http://code.google.com/p/hamcrest/issues/detail?id=83#c13

from javahamcrest.

npryce avatar npryce commented on July 2, 2024

It should be <T> Matcher<Object> isA(Class<T> expectedType, Matcher<? super T> downcastMatcher)

from javahamcrest.

time4tea avatar time4tea commented on July 2, 2024

Which is a matcher of object not T. That would do it I think.
On 29 Jan 2013 22:11, "Nat Pryce" [email protected] wrote:

It should be Matcher isA(Class expectedType, Matcher<? super T>
downcastMatcher)


Reply to this email directly or view it on GitHubhttps://github.com//issues/27#issuecomment-12861355.

from javahamcrest.

scarytom avatar scarytom commented on July 2, 2024

I'll have a go at this soon... watch this space :)

from javahamcrest.

time4tea avatar time4tea commented on July 2, 2024

oddly all the angle brackets in the type signature didn't appear in the email i got from github... hence my comment about Object, not T - which you can see here but not in the email...

from javahamcrest.

EarthCitizen avatar EarthCitizen commented on July 2, 2024

Has there ever been any progress on this issue? I made my own version of isA() to get around the issues discussed here.

from javahamcrest.

scheffield avatar scheffield commented on July 2, 2024

@EarthCitizen: would be nice to see it as a Gist.

from javahamcrest.

EarthCitizen avatar EarthCitizen commented on July 2, 2024

isA() is an alias for instanceOf() is it not? What about something like isClass() for exact Class matching?

from javahamcrest.

bitzl avatar bitzl commented on July 2, 2024

I've submitted an Pull Request (#127) to fix this. The behavior of isA is documented as shortcut to instanceOf. I've enhanced tests to check if the beavior is similar and changed the methods return a Matcher<?> instead of Matcher<TheClass.class>.

from javahamcrest.

sf105 avatar sf105 commented on July 2, 2024

Fixed

from javahamcrest.

massenz avatar massenz commented on July 2, 2024

Could you please give us an indication of which version this was/will be released for?
I'm currently using java-hamcrest:2.0.0.0 and it still has the same incorrect signature.

Thanks.

from javahamcrest.

durron597 avatar durron597 commented on July 2, 2024

This change hasn't been released yet. I'm not a Hamcrest member so I can't tell when they plan to release the next one, but for now it looks like you'll have to build from source.

Unfortunately master still has the version number listed as 2.0.0.0, so you'd probably have to change that in your build if you're going to add it to a local repo.

from javahamcrest.

micheal-hill avatar micheal-hill commented on July 2, 2024

hamcrest:2.1 has this problem...

from javahamcrest.

ProYI avatar ProYI commented on July 2, 2024

junit:4.13 depend on hamcrest-core:1.3 also has this problem

from javahamcrest.

nhojpatrick avatar nhojpatrick commented on July 2, 2024

hamcrest:2.1 has this problem...

does org:hamcrest:hamcrest:2.2 have the problem?

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.