Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
12answers
243 views

What documenting expectations can developers reasonably fulfill?

I work at a growing company where developers were doing customer support. Now, that our customer base is growing and we're trying to get the documentation the support staff needs in order answer the ...
2
votes
0answers
40 views

using assertRaises - handling propagated exceptions

I have some code where I'm testing for a wrapped exception, when it failed and the exception propagated I thought the error message and back trace wasn't verbose enough, primarily because it didn't ...
1
vote
1answer
45 views

Testing hash contents using RSpec

I have a test like so: it "should not indicate backwards jumps if the checker position is not a king" do board = Board.new game_board = board.create_test_board ...
1
vote
1answer
155 views

How to set Expect to a Extension method in Rhino Mocks 3.6

Good afternoon I have a class and it has an associated extension method. public class Person{ public int ID {get;set} public string Name {get;set} } Extension method: public static class ...
1
vote
1answer
366 views

Nmock2 and Event Expectations

Im in the process of writing a test for a small application that follows the MVP pattern. Technically, I know I should have written the test before the code, but I needed to knock up a demo app quick ...
1
vote
1answer
205 views

Jmockit expectations error

I have unit test case where I am using JMockit with expectations. Now when I run the test case alone, the test case passes. But when I run all test cases collectively, I get the: expected exactly 1 ...
0
votes
1answer
22 views

Hashing & Expectation

Hash function h:{0,1}^30000→{0,1}^20 A message m is sampled if the first 4 bits of h(m) are all zero. Let N be the number of messages the detector hashes, and let Y be the number of messages the ...
0
votes
2answers
424 views

PHPUnit mock with multiple expects() calls

Using PHPUnit, I wonder how we can have multiple expectation from the same stub/mock. For example, I want to test that the mock will have the method display() called and return NULL. I also want to ...
0
votes
1answer
90 views

Calling a method when expected method on mock was invoked

I have the following scenario: class InterfaceA; class InterfaceB; class InterfaceC; class InterfaceA { virtual void foo(InterfaceC&) = 0; }; class InterfaceB { virtual void bar() = 0; }; ...
0
votes
1answer
112 views

How to specify expected return values?

I'm new to RSpec and as I was writing a spec test I came across a problem where the spec tests are passing even though the return values are different than what I specified in my expectations. For ...
0
votes
1answer
198 views

What should a Java/SOA developer be able to do?

I got assigned the task to list the activities a Java Developer should be able to perform and create an estimate about the time it would take. I've came up with the following: Create JDBC CRUD ...
0
votes
2answers
232 views

RSpec: Expectation on model's not working while testing controller

I'm trying to write a functional test. My test looks as following: describe PostsController do it "should create a Post" do Post.should_receive(:new).once post :create, { :post => { ...
0
votes
1answer
1k views

should_receive in RSpec

As far as I know, should_receive is applied only to mock objects. What I want is to check, if a certain Class (not object) received a certain message, like: User.should_receive(:all).once How do I ...
0
votes
1answer
319 views

Setting expectations on MoQ

I'm using MoQ to test some controllers I have. I'm not able to set the expectations. This is the code I have: var rep = new Mock<IUserRepository>(); rep.Setup(r => r.Save()); ...
0
votes
1answer
326 views

SimpleTest Mock objects: clearing expectations

The short question: Is there a way to reset a Mock object in SimpleTest, removing all expectations? The longer explanation: I have a class that I'm testing using SimpleTest and am having some ...