Tagged Questions
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.
16
votes
4answers
3k views
Checking that a List is not empty in Hamcrest
I was wondering if anyone knew of a way to check if a List is empty using assertThat() and Matchers?
Best way I could see just use JUnit:
assertFalse(list.isEmpty());
But I was hoping that there ...
14
votes
3answers
3k views
Why showily I use Hamcrest-Matcher and assertThat() instead of traditional assertXXX()-Methods
When I look at the examples in the Assert class JavaDoc
assertThat("Help! Integers don't work", 0, is(1)); // fails:
// failure message:
// Help! Integers don't work
// expected: is <1>
// got ...
9
votes
11answers
11k views
Ant + JUnit: NoClassDefFoundError
Ok, I'm frustrated! I've hunted around for a good number of hours and am still stumped.
Environment: WinXP, Eclipse Galileo 3.5 (straight install - no extra plugins).
So, I have a simple JUnit ...
6
votes
4answers
1k views
How to use JUnit and Hamcrest together?
I can't understand how JUnit 4.8 should work with Hamcrest matchers. There are some matchers defined inside junit-4.8.jar in org.hamcrest.CoreMatchers. At the same time there are some other matchers ...
5
votes
2answers
106 views
How to hint type inference when using static imports?
I am using junit with hamcrest in my unit tests and I came across a generics problem:
assertThat(collection, empty());
I am aware of type inference not being available this way and that one of the ...
5
votes
2answers
310 views
What is the idiomatic Hamcrest pattern to assert that each element of an iterable matches a given matcher?
Examine the following snippet:
assertThat(
Arrays.asList("1x", "2x", "3x", "4z"),
not(hasItem(not(endsWith("x"))))
);
This asserts that the list doesn't have an element that ...
5
votes
4answers
1k views
Java Hamcrest : Collection contains item of type
I'd like to assert that List<Achievement> contains a member of type TestAchievement.
Here's my assertion:
List<Achievement> achievements; // Populated elsewhere
...
5
votes
8answers
7k views
Hamcrest's hasItems
Why does this not compile, oh, what to do?
import static org.junit.Assert.assertThat;
import static org.junit.matchers.JUnitMatchers.hasItems;
ArrayList<Integer> actual = new ...
4
votes
2answers
148 views
Mockito's Matcher vs Hamcrest Matcher?
That's going to be an easy one, but I cannot find the difference between them and which one to use, if I have both the lib's included in my classpath?
4
votes
2answers
606 views
Is there a version of JUnit assertThat which uses the Hamcrest 'describeMismatch' functionality?
In every version of JUnit I have tried (up to 4.8.1), a failing assertThat will display an error message that looks like:
expected: [describeTo]
got: [String representation of object]
In other ...
3
votes
2answers
69 views
Using assertArrayEquals() with wildcards?
I want to test code that produces byte arrays used to send as UDP packets.
Although I'm not able to reproduce every byte in my test (e.g. random bytes, timestamps), I'd like to test the bytes that I ...
3
votes
1answer
89 views
Generic assertThat(ArrayList, hasItems(InstanceOfSomeInterface)) not working
i want to use Hamcrest’s hasItems with an "actual" collection that is an ArrayList<? extends SomeInterface>
on
assertThat(ArrayList<? extends SomeInterface>, ...
3
votes
3answers
182 views
Is there a simple way to match a field using Hamcrest?
I want to test whether a specific field of an object matches a value I specify. In this case, it's the bucket name inside an S3Bucket object. As far as I can tell, I need to write a custom matcher for ...
3
votes
2answers
479 views
Using hamcrest for comparing each item in two separate lists with own matcher
i try to compare two lists with each other:
ListA (a1,a2,a3,...)
ListB (b1,b2,b3,...)
I want that a1 is compared to b1, a2 to b2, a3 to b3, ....
But i have to use another method and cannot use ...
3
votes
1answer
236 views
Do any tools use the hamcrest Factory annotation?
I sat down to write a matcher today and decided to take a quick look at the jmock documentation to refresh my memory on the process, and noticed a reference to the org.hamcrest.Factory annotation. ...
3
votes
1answer
628 views
Map equality using Hamcrest
I'd like to use hamcrest to assert that two maps are equal, i.e. they have the same set of keys pointing to the same values.
My current best guess is:
assertThat( affA.entrySet(), hasItems( ...
3
votes
3answers
2k views
What is the recommended way to integrate Hamcrest into Eclipse's JUnit?
Is there a recommended way to integrate Hamcrest into the JUnit configuration in Eclipse? Currently Eclipse's JUnit comes with Hamcrest-core only. I want to edit that configuration to include ...
3
votes
4answers
786 views
Using a struct with OCMock or Hamcrest
I'm hitting a road block and I'm wondering if the brilliant collective minds here can help. In ObjC CocoaTouch I'm trying to mock an object that takes struct parameters and returns a struct. OCMock is ...
3
votes
2answers
852 views
Multiple correct results with Hamcrest (is there a or-matcher?)
I am relatively new to matchers. I am toying around with hamcrest in combination with JUnit and I kinda like it.
Is there a way, to state that one of multiple choices is correct?
Something like
...
2
votes
1answer
67 views
Why this assertThat assertion throws AssertionError?
Creating tests for an assignment, I'm getting an strange AssertionError exception.
I have changed it until i got to a simple case:
List<Integer> elements= new ArrayList<Integer>();
...
2
votes
1answer
43 views
Hamcrest matcher for Object… parameters
I got method of class
interface Class1{
void method1(SomeObject... parameters);
}
I have a custom Hamcrest matcher
public class SomeObjectMatcher extends BaseMatcher<SomeObject>{...}
...
2
votes
1answer
100 views
Generics Hell - How do I pass a joda.DateTime to Hamcrest Matcher.greaterThan?
JodaTime has
public final class DateTime extends BaseDateTime {...}
which works its way up to
public interface ReadableInstant extends Comparable<ReadableInstant>
Hamcrest has
public ...
2
votes
2answers
255 views
Getting “NoSuchMethodError: org.hamcrest.Matcher.describeMismatch” when running test in IntelliJ 10.5
I'm using JUnit-dep 4.10 and Hamcrest 1.3.RC2.
I've created a custom matcher that looks like the following:
public static class MyMatcher extends TypeSafeMatcher<String> {
@Override
...
2
votes
1answer
111 views
LambdaJ class property matcher
I am trying to write a Hamcrest matcher to verify the return value of a method that returns a Class object. For example, given the class:
public static class ClassHolder {
private final Class ...
2
votes
2answers
106 views
I can't compile hamcrest hasKey() method
This is the code:
Map<Foo, String> map;
org.hamcrest.MatcherAssert.assertThat(map,
org.hamcrest.Matchers.hasKey(new Foo()));
This is what compiler is saying:
cannot find symbol method ...
2
votes
3answers
343 views
Java generics and wildcards: How to make this code compile?
I'm writing some matchers using the Hamcrest 1.2 library, but I'm having a hard time with Java wildcards. When I try to compile the following code
public class GenericsTest {
public void ...
2
votes
2answers
216 views
matcher library for .net
Does any matcher libraries exist for .net?
I am talking about a library like the hamcrest library for java...
2
votes
2answers
2k views
Hamcrest equal collections
Is there a matcher in Hamcrest to compare collections for equality?
There is contains and containsInAnyOrder but I need equals not bound to concrete collection type.
E.g. I cannot compare ...
2
votes
4answers
1k views
Hamcrest's lessThan doesn't compile
Trying to compile this code
import static org.hamcrest.Matchers.is;
import static org.hamcrest.number.OrderingComparison.lessThan;
...
Assert.assertThat(0, is(lessThan(1)));
issues this ...
2
votes
1answer
398 views
What's new in Hamcrest 1.2?
What's the difference between Hamcrest 1.1 and 1.2? I couldn't find a release notes page or a file listing changes! Where can I find such info?
1
vote
3answers
71 views
Hamcrest Date Matchers (java)
I need to test before/after on dates in a certain test case. I'd like to use Hamcrest matchers if possible.
Are there any matchers for Hamcrest (java) for working with Dates? If so, what ...
1
vote
2answers
68 views
Hamcrest matcher for a String, where the String contains some random values
Is there a way to match the following string with any of the hamcrest matchers.
...
1
vote
3answers
74 views
Any way to use Hamcrest matchers in production code?
I'd like to use hamcrest as sugar framework to use in if statements, not in the unit tests with asserts, but in raw production code.
Something like
if ( isNotEmpty(name) ) return //....
or
if ( ...
1
vote
1answer
70 views
Hamcrest Matcher compilation difference between Eclipse and javac
I am trying to make use of a custom matcher from hamcrest within the hasItem matcher
@Test
public void populatesChildCompanies() {
final long firstChildId = 2;
final String firstChildName ...
1
vote
0answers
51 views
Junit and Hamcrest Licenses
I did a bit of research and I have noticed that Junit ships under CPL, Common Public License,
whereas Hamcrest under BSD license 2 clauses (commonly called FreeBSD).
My question is:
If I want to ...
1
vote
1answer
82 views
How can I ask Eclipse to always prefer the newest version of a library that is included by other libraries?
My project uses junit-4.8.2.jar and mockito-all-1.8.5.jar; both includes Hamcrest 1.1. This is working just fine until I added hamcrest-all-1.2.jar; now I get various NoSuchMethodError, because ...
1
vote
1answer
40 views
Using not operation in hamcrest
I was recently trying to assert the inequality in one of the test. However I wasnt able to find the appropriate matcher in hamcrest.
What I ideally want to do is something like.
assertThat(2 , ...
1
vote
1answer
363 views
org.hamcrest.Matchers for matching different properties simultaneously of an Object
I am trying to match two different properties of an Object by org.hamcrest.Matchers. Here it is:
List<LeaveApply> leaveApplyList = Lambda.select(allLeaveApplyList, ...
1
vote
3answers
84 views
Publish test utils from maven project
I created a library in maven that can be extended by implementing some interfaces. To test the default implementation I have written some hamcrest matchers that currently live in src/test/java.
...
1
vote
1answer
329 views
Using Hamcrest matchers with JMock in Groovy
I'm new to Groovy (and to JMock too for that matter) and having some trouble building expectations that use matchers on the parameters of the methods being mocked. When I try to do something like ...
1
vote
2answers
77 views
Is there a stable release build of non-Java Hamcrest matcher libraries?
Clearly the hamcrest Java library has a stable release, but as far as I can tell the hamcrest-php, hamcrest-python and hamcrest-as3 (and presumably others, but those are the ones I care about at the ...
1
vote
1answer
676 views
Mixing Hamcrest and TestNG
Has anyone integrated Hamcrest with TestNG so that its matchers can easily be used in TestNG assertions?
0
votes
0answers
19 views
Recursive SamePropertyValuesAs matcher in hamcrest
I am looking for a hamcrest matcher that behaves the same way as SamePropertyValuesAs but with the added twist that if a property is not a primitive, one of the standard Java classes (string, integer ...
0
votes
2answers
107 views
Hamcrest assertThat ambiguous?
I got some samplecode from a college, imported the project and try to run the Tests:
The method assertThat(Integer, Matcher) is ambiguous for the type MyClass
Every assertThat is marked red with the ...
0
votes
2answers
82 views
JMock expectations - is it possible to check the actual value in the expectation?
I'm new to Java and JMock and I'm currently trying to get my head around mocking. I've created this dummy test with dummy classes:
public class JmockUnitTest {
private Mockery context = new ...
0
votes
2answers
150 views
Why junit included part of hamcrest in binary, but not in source
Ok, so here is the place to download junit. Open any compiled jar - there is package org.hamcrest. Open any source-jar - there is no such package.
It is very strange since sources for hamcrest are ...
0
votes
2answers
128 views
Adding OCHamcrest to an IOS Project
The documentation for the project says just add the framework and the linker flags and you are good to go. Hours and hours of wasted time later, I have figured out that that's not true. If you do ...
0
votes
2answers
243 views
Hamcrest & JUnit & Eclipse: Error messages wrong way round
I'm currently running Hamcrest 1.3RC on top of JUnit 4 on top of Eclipse Helios, and there's just one thing that bothers me about Hamcrest: The error messages are the wrong way around. Instead of ...
0
votes
1answer
314 views
NoSuchMethodError: org.hamcrest.Matchers.hasXPath when I run tests in eclipse
I have a unit test that uses the hamcrest library (1.2). It's important that it's 1.2 because I want to include a namespace context in the hasXPath matcher. This is a maven project and I have all my ...
0
votes
1answer
318 views
Unit Tests Failure At Xcode 3.2.4, iOS 4.1 SDK Using Hamcrest Assertion
We upgraded to Xcode 3.2.4 with iOS 4.1 SDK, now our tests are failing.
First because of this An internal error occurred when handling command output: -[XCBuildLogCommandInvocationSectionRecorder ...