Matchers are objects used among other thing by testing libraries to check if an object matches an abstract description of an expected state.
0
votes
0answers
22 views
Testing rails validates_uniqueness_of scoped to an array
I've got a model with a pretty specific validation for uniqueness. I don't want a duplicate record to exist for any one user, but a "duplicate" may exist between separate users.
The model
class ...
0
votes
2answers
31 views
Jasmine: one matcher per “it” or multiple?
Is it right to have multiple matchers per one "it" in Jasmine tests or they will interfere with each other?
I want to consolidate these tests into one:
var mapper = ......... ;
it('should be ...
1
vote
1answer
36 views
Shoulda and RSpec's before
I try to set a instance variable in a subject before testing validity of model fields. I need to set this variable, because validation is conditional (it is used only for some type of users). So I ...
0
votes
4answers
82 views
How to check if string contains all of strings in array?
I have
last_email_sent.body.should include "Company Name"
last_email_sent.body.should include "SomeCompany"
last_email_sent.body.should include "Email"
last_email_sent.body.should include ...
-1
votes
1answer
80 views
AngularJS test check p contains text
I am trying to write an end-to-end test which checks if a p tag exists containing some specific text:
it('should display search result snippet for a result item', function() {
...
1
vote
1answer
76 views
gmock matcher doesn't match my arguments by reference
I have a mocked function in a class like
int foo(const bar& b) const;
which is mocked like
MOCK_CONST_METHOD1(foo, int(const bar& b));
for which I've set set some default actions like
...
1
vote
1answer
92 views
rspec custom matcher is not working - getting NoMethodError
I am trying to do exercise 2 in chapter 8 of Michael Hartl's RailsTutorial.org. I have added the following to the spec/support/utilities.rb file:
RSpec::Matchers.define :have_title do |message|
...
0
votes
1answer
93 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:
...
2
votes
1answer
414 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"};
...
0
votes
1answer
65 views
Is there an rspec for belongs_to_active_hash, same as belongs_to :other_model
I have many active record validations which work ok, such as this:
code: belongs_to :topics
test: it { should belong_to :topic }
However I have an active_hash association and a test like this:
code: ...
0
votes
3answers
200 views
How can I force user to enter password with symbol(s) inside?
if (password1.length() >= 15){
final String PasswordPattern = "^(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])[0-9A-Za-z]{15,}$";
Pattern ...
0
votes
0answers
155 views
UnitTesting: assertThat arguments incompatible type or pointer to integer without a cast
I am trying to set up my project TDD, so I've got the following unit test:
- (void)testOnDoesUsernameExistsShouldReturnFalseWhenInvalidJSONResponseFromService {
id mock = [OCMockObject ...
8
votes
1answer
1k 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 ){
...
1
vote
1answer
398 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!
...
4
votes
2answers
4k 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 ...
11
votes
2answers
598 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 ...
1
vote
3answers
383 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 ...
3
votes
2answers
149 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 ...
17
votes
9answers
20k 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 ...
