What is the alternative to using the Deprecated Hamcrest method is()?

前端 未结 3 1641
走了就别回头了
走了就别回头了 2021-02-03 17:31

I use the following code at the moment to assert on a boolean value, however the method org.hamcrest.Matchers.is() is deprecated.

asser         


        
3条回答
  •  悲哀的现实
    2021-02-03 17:40

    I had thought this was a transitive dependency issue, but it's really just a display issue in Eclipse where it marks the import as deprecated because one overloaded form is. The code should compile fine since the import will expose all forms.

    The deprecated form has been removed from the source and will not exist in the next release (1.4).

    Original Answer

    The problem is that JUnit includes a set of Hamcrest classes in its JAR. You can use junit-dep.jar for now, but newer versions (4.9 and 4.10 so far) of JUnit omit them.

提交回复
热议问题