Hamcrest is an open source library of constraint classes used to match objects and values, typically by other frameworks such as unit testing, mocking, or collections.

learn more… | top users | synonyms

1
vote
2answers
25 views

Custom hamcrest matcher that works with “not”?

I have some class (say, Entity). I want to be able to 1) test that an instance of that is "valid", using some custom code to decide that 2) also test that an instance is not valid, ideally using ...
0
votes
0answers
15 views

Python Hamcrest - test that list is not empty

Is there a clean way to test that a list is not empty in Hamcrest (python). There are several ways to do it by checking the list length etc., but I'd like something that reads nicely for tests.
6
votes
2answers
139 views

Why is it `<T>Type` as return type in Java Generics and not `Type<T>`?

I just wrote a simple JUnit Matcher for assertThat() which requires Generics, of course. By a bit of luck I found the right syntax for the return type of static <T>Matcher not(Matcher<T> ...
2
votes
2answers
48 views

AS3 Hamcrest - Assert one array contains all of another

I am attempting to use the Hamcrest matchers that come with the Flashbuilder 4.7 environment. I have 2 arrays, array A and array B. What I want to do is make sure that all of the members of B are ...
6
votes
2answers
155 views

NoSuchMethodError with Hamcrest 1.3 & JUnit 4.11

Another instance of the NoSuchMethodError for the JUnit & Hamcrest combination. Offending code: assertThat(dirReader.document(0).getFields(), hasItem( new FeatureMatcher<IndexableField, ...
3
votes
1answer
40 views

How to write matchers for all the important test libraries?

I'm currently extending Degraph to check for violation of dependency rules. So far I have created matchers for ScalaTest, since this is my favorite test library for the JVM. But many others prefer or ...
0
votes
2answers
100 views

junit and hamcrest declaration

I am using junit at 4.10 and declared hamcrest-core at 1.3 and hamcrest-library at 1.3. My question is are hamcrest-library and hamcrest-core embedded in junit 4.10. what about junit 4.11? ...
2
votes
2answers
86 views

How to check if collection contains items in given order using Hamcrest

How to check using Hamcrest if given collection is containing given items in given order? I tried hasItems but it simply ignores the order. List<String> list = Arrays.asList("foo", "bar", ...
7
votes
2answers
102 views

For method of type T, what shoud be its 'infered' type when it takes two <? super T> arguments?

There is a method in hamcrest library: package org.hamcrest.core ... public static <T> Matcher<T> allOf(Matcher<? super T> first, Matcher<? super T> second) { ...
0
votes
1answer
46 views

How should I use org.mockito.AdditionalMatchers.gt?

I'm trying to figure out how org.mockito.AdditionalMatchers works but I failed. Why is this test failing? import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.*; import static ...
6
votes
1answer
107 views

Misuse of hamcrest hasItems

I have a list of Integers (current) and I want to check whether this list contains all elements from list expected and not even one element from list notExpected, so code looks like: ...
0
votes
1answer
95 views

Can't find assertThat

Here is my code import org.junit.Test; import static org.junit.Assert.assertThat; import static sun.nio.cs.Surrogate.is; public class PlayerTest { public void should_return_3_when_status_is_3(){ ...
1
vote
1answer
168 views

Hamcrest.Matchers: JSON Nested Array

I have an array as follow: [[Disable,Enable,No,Yes][Joe,Bill,Doug,Kevin],[Red,Blue,Pink,Magenta],[One,Two,Three,Four]]; I need a hamcrest matcher that will match with an excel file that has ...
1
vote
1answer
67 views

Why does this commit that should do nothing make my integration tests compile? [closed]

See https://github.com/pimterry/js-test-runner/commit/153fe2f4d1dd5ac271d06b4eac5223ee9cec8ee4. This project previously compiled, and passed, when building and running the integration tests in ...
0
votes
1answer
90 views

Hamcrest Matcher with junit style diff

I am using Hamcrest Matcher to compare two JSON objects. The compare method uses Gson parser. The matcher works great but when the two JSON are not same, i am only able to show message like: ...
0
votes
1answer
139 views

AllOf Hamcrest matcher with Maven

Running assertThat(collection, allOf(hasItems(i1, i2, i3), hasSize(3))); from Eclipse (Run as -> Junit) everything works fine, but when I execute Maven test (mvn clean test) it fails during ...
1
vote
1answer
123 views

Comparing objects using hamcrest and lambdaj based on multiple inputs

I am trying to filter an array list to remove objects that do not match a set of criteria input by a user. The object has 3 lists. See below for example. public class A { public String [] a={"a", ...
2
votes
3answers
139 views

How to assert a generic list of integers with Hamcrest?

I am trying to match a list of integers with Hamcrest, had look at a few examples online however I am getting runtime exceptions. Can some please let me know what is the right syntax ? ...
1
vote
1answer
40 views

Hamcrest's anything() doesn't compile

Am I missing something here? @Test public void testAnything(){ Random random = new Random(); assertThat(random.nextInt(), is(equalTo(anything()))); } This doesn't compile. Eclipse complains ...
0
votes
2answers
267 views

Assertion, is null or is an instance of specific Class

simple I thought Assert.assertThat( iterator.next(), Matchers.either(Matchers.nullValue()).or( Matchers.instanceOf(Double.class))); So I'd ...
3
votes
1answer
111 views

How to assert that every item in collection is within range

I have a Groovy array that will get a set number of random Integer Values. And I want to assert that each item in the array has a value within the given range. I'm trying to use Hamcrest Matchers. ...
2
votes
1answer
125 views

IDEA, Hamcrest and static imports

My maven project includes 186 <dependency> 187 <groupId>org.hamcrest</groupId> 188 <artifactId>hamcrest-all</artifactId> 189 ...
2
votes
1answer
410 views

how to use lambdaj with hamcrest matcher (hasItemsInArray) for filtering a list

I'm trying to filter a list of caroffers Objects which are found in vendor array through lambdaj. But the below code doesn't work. I'm getting empty list. String[] vendor = {"FORD","TOYOTA"}; ...
3
votes
1answer
211 views

Specs2: Use a Hamcrest matcher

I have a wide array of Hamcrest matchers for my domain objects written in Java. I'm now moving to Scala and would like to reuse these existing matchers in the context of specs2 tests. Given a ...
11
votes
2answers
534 views

Generics hell: hamcrest matcher as a method parameter

So, let's have a list of strings and a function that takes a Hamcrest matcher and returns a result of the matches() method of the provided matcher: public boolean matchIt(final Matcher<? super ...
1
vote
2answers
338 views

JUnit ExpectedExceptions and Matcher#startsWith

I was browsing the junit ExpectedExceptions' javadoc and I can't understand where the startsWith in their example comes from (marked HERE in the code). I checked the CoreMatcher utility class but ...
5
votes
2answers
245 views

hamcrest number comparison between

Is there a way in Hamcrest to compare a number within a number range? I am looking for something like this assertThat(50L, is(between(12L, 1658L)));
6
votes
2answers
434 views

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

I use the following code at the moment to assert on a boolean value, however the method org.hamcrest.Matchers.is() is deprecated. assertThat(someValue, is(false)); Is there a simple alternative ...
0
votes
1answer
209 views

Astonishment using Hamcrest in JUnit tests?

I am obviously confused about how to use Hamcrest's IsIterableContainingInOrder to verify List equality beyond just using .equals(). I'd like to see Hamcrest's helpful messages in my reports. Why are ...
0
votes
2answers
744 views

Writing better JUnit Parameterized test cases

I have an interesting requirement. I want to have as better test case coverage as possible in my application. I am using Parameterized Junit to run testcases with number of different inputs. My sample ...
0
votes
2answers
81 views

Non-serializable Matcher in Wicket Behavior

I was building a visibility behavior on Wicket that used Hamcrest Matcher (and some Lambdaj) to see if any of the given property models values match the given matcher and if so, then it would hide the ...
1
vote
1answer
223 views

Match empty collection with Hamcrest's hasItem()

How do I match an empty collection using TestNG and hasItem from Hamcrest? This is what I get as a result of one test. java.lang.AssertionError: Expected: a collection containing email = null phone ...
3
votes
1answer
114 views

Using JMock2 with Matchers in Groovy: problems with 'with' method

I have a following snippet with JMock expectations in my test method: context.checking(new Expectations() {{ allowing(listener).tableChanged(with(anyInsertionEvent())); ...
4
votes
4answers
703 views

How do I assert a List contains elements with a certain property?

Assume I want to unit test a method with this signature: List<MyItem> getMyItems(); Assume MyItem is a pojo that has many properties, one of which is "name", accessed via getName(). All I ...
1
vote
2answers
519 views

JMock- java.lang.NoSuchMethodError: org.hamcrest.Matcher.describeMismatch()

I understand that the solution is to somehow make sure that Junit is loaded after hamcrest. I have an intellij project, in which I setup an external library, which contains both JUnit and JMock and ...
4
votes
2answers
184 views

Hamcrest library for date

I have been looking around but I have not found anything useful. Are there any 3rd party libraries that work with hamcrest that have extensive date matching? Specifically I am looking for matchers ...
2
votes
1answer
122 views

Why mockito returns error eve argument are identical?

Take a look at this picture. what is going on with Mockito verifying Argument ? I want to verify that view is invoked with the argument factory. @Test public void ...
2
votes
1answer
702 views

Can't make JUnit work (assertThat/hasItem)

I've just created a dummy Maven project: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
408 views

Why does this hamcrest matcher work in eclipse but not outside? [duplicate]

Possible Duplicate: Hamcrest's hasItems I've written a test using a hamcrest matcher that looks like: @Test public void testGenericsIsEmpty() { List<String> myStrings = new ...
3
votes
1answer
256 views

Configure autocomplete in intellij with hamcrest and mockito dsl

I'm wondering if its possible to configure Intellij's smart insert to suggest hamcrest and mockito dsl idioms when in test classes. Really I'm looking for something like eclipse's 'static favorites', ...
1
vote
2answers
288 views

Can I use mockito to match an object with an auto updated timestamp?

What would be the best way to something like this where a timestamp is updated automatically before making the mocked call? Here is some sort of dummy code of what I am trying to test: public class ...
0
votes
1answer
245 views

Case Insensitive filtering with lambdaj

I'm attempting to familiarize myself with lambdaj, and am unsure how the best way to solve this problem. Given the following test: @Test public void test() { final List<String> l1 = new ...
9
votes
2answers
643 views

Difference between hamcrest-library Matchers and hamcrest-core CoreMatchers

It looks like the hamcrest org.hamcrest.Matchers class is very similar to org.hamcrest.CoreMatchers (though it looks like Matchers has more). Why would I choose to use CoreMatchers (other than it ...
3
votes
1answer
284 views

Is the signature of Hamcrest allOf() wrong?

This matcher checks a collection of matchers and succeeds if they all succeed. The signature reads: public static <T> Matcher<T> allOf(Iterable<Matcher<? extends T>> ...
0
votes
2answers
351 views

JMock map expectations

I have a dependency with a method that takes a Map as an argument. public interface Service { void doSomething(Map<String, String> map); } I'd like to write an assertion that this ...
5
votes
1answer
202 views

How can I use Hamcrest to check if each element in an array of doubles is “close” to each element in another array?

I would like to compare two arrays of doubles. Using vanilla JUnit, I can do: double[] a = new double[]{1.0, 2.0, 3.0}; double[] b = new double[]{1.0, 2.0, 3.0}; assertEquals(a, b, 1e-10); I would ...
1
vote
0answers
398 views

Strange error with assertThat and Hamcrest is() and nullValue()

I have a method I was converting from standard assertNull and assertNotNull to use assertThat. I started changing a few of the assertions from: ...
1
vote
1answer
188 views

How to combine multiple assert_that in Hamcrest?

I'm using PyHamcrest but I think this question is language agnostic. I would like to turn: assert_that(actual0, matcher0) assert_that(actual1, matcher1) into a single assert so that if both ...
1
vote
1answer
573 views

Mockito acts strangely when I assign multiple custom matchers to a single method

I'm wanting to use two custom matchers for a single method. Basically, if I pass the method VALUE_A, I want it to return RESULT_A, and if I pass it VALUE_B, I want it to return RESULT_B. So here's a ...
0
votes
2answers
146 views

Testing all the elements in collection fulfil predicate

I need to test method which returns ordered List of some complex objects. Simplified example: class MyObject { public String foo() { return someString; } } I want to test both: orderable of ...

1 2 3