Tagged Questions
The matchers tag has no wiki summary.
6
votes
2answers
143 views
How to show custom failure messages in ScalaTest?
Does anyone know how to show a custom failure message in ScalaTest?
For example:
NumberOfElements() should equal (5)
Shows the following message when it fails:
10 did not equal 5
But i want ...
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 ...
3
votes
1answer
42 views
Object equality in jasmine custom matcher
I have a custom matcher in some Jasmine test specs of the form:
this.addMatchers({
checkContains: function(elem){
var found = false;
$.each( this.actual, function( actualItem ){
...
3
votes
2answers
117 views
How to compose a Matcher[Iterable[A]] from a Matcher[A] with specs testing framework
If I have a Matcher[A] how do create a Matcher[Iterable[A]] that is satisfied only if each element of the Iterable satisfies the original Matcher.
class ExampleSpec extends Specification {
def ...
3
votes
1answer
1k views
Using pickle with cucumber and factory_girl to create associated models and pass parameters through to the nested model
I have the following models:
class User < ActiveRecord::Base
has_one :profile, :dependent => :destroy
def before_create
self.profile ||= Profile.new
end
end
class Profile ...
2
votes
2answers
489 views
EasyMock : java.lang.IllegalStateException: 1 matchers expected, 2 recorded
I am having a problem with EasyMock 2.5.2 and JUnit 4.8.2 (running through Eclipse). I have read all the similar posts here but have not found an answer. I have a class containing two tests which test ...
1
vote
1answer
142 views
Active Record save methods throws Cannot visit RSpec::Matchers error
I have this piece of code using ruby and active record
customer_email = Email.first(:conditions => {:Email_Address => email_address})
customer_email.Is_Verified = 1
customer_email.save!
...
1
vote
3answers
181 views
ambiguous references when mixing NUnit and NMock2 matchers
We're using NUnit (2.5.9) and NMock2 for unit testing and mocking. Both, however, have a matcher syntax that closely corresponds. When I do
using NUnit.Framework;
using NMock2;
And later on the ...