Java Test with EasyMock
up vote
0
down vote
favorite
I'm traying to make a test, and I have this
Analysis analysis = EasyMock.createMock(Analysis.class);
Request request = EasyMock.createMock(Request.class);
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
EasyMock.replay(request);
EasyMock.replay(analysis);
return analysis;
But I need to change this
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
for something similar to this
EasyMock.expect(request.entryValue("field")).andReturn(message).anyTimes();
but I can't find a way to make it work.
java testing
add a comment |
up vote
0
down vote
favorite
I'm traying to make a test, and I have this
Analysis analysis = EasyMock.createMock(Analysis.class);
Request request = EasyMock.createMock(Request.class);
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
EasyMock.replay(request);
EasyMock.replay(analysis);
return analysis;
But I need to change this
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
for something similar to this
EasyMock.expect(request.entryValue("field")).andReturn(message).anyTimes();
but I can't find a way to make it work.
java testing
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm traying to make a test, and I have this
Analysis analysis = EasyMock.createMock(Analysis.class);
Request request = EasyMock.createMock(Request.class);
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
EasyMock.replay(request);
EasyMock.replay(analysis);
return analysis;
But I need to change this
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
for something similar to this
EasyMock.expect(request.entryValue("field")).andReturn(message).anyTimes();
but I can't find a way to make it work.
java testing
I'm traying to make a test, and I have this
Analysis analysis = EasyMock.createMock(Analysis.class);
Request request = EasyMock.createMock(Request.class);
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
EasyMock.replay(request);
EasyMock.replay(analysis);
return analysis;
But I need to change this
EasyMock.expect(analysis.request()).andReturn(request).anyTimes();
for something similar to this
EasyMock.expect(request.entryValue("field")).andReturn(message).anyTimes();
but I can't find a way to make it work.
java testing
java testing
asked Nov 22 at 15:29
Pink A
42
42
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Reading your question I can't understand if you omitted some lines. The syntax in the line with "anyTimes()" is correct, but Easymock doesn't work this way. It is supposed to be used in unit tests.
Stage 0. You insert/set mock objects into service/object you want to test.
public final IMocksControl mockControl = createStrictControl();
@Before
public void setup() {
boxStatusRepoMock = mockControl.createMock(BoxStatusRepo.class);
boxRepoMock = mockControl.createMock(BoxRepo.class);
ReflectionTestUtils.setField(boxService, "boxStatusRepo", boxStatusRepoMock);
ReflectionTestUtils.setField(boxService, "boxRepo", boxRepoMock);
}
All the other code in stages 1-6 is to be put into a method with annotation @Test
Stage 1. You prepare data to be returned by mocked methods
Stage 2. You list expected calls of mock objects. The number and the order are important.
Stage 3. You call mockControl.replay();
Stage 4. You call some service method - the one which call mocks with their methods (you set them in stage 0). The service must not be a mock itself.
Stage 5. You call mockControl.verify();
Stage 6. Optionally you can check the value returned in stage 4.
A tutorial on easymock
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Reading your question I can't understand if you omitted some lines. The syntax in the line with "anyTimes()" is correct, but Easymock doesn't work this way. It is supposed to be used in unit tests.
Stage 0. You insert/set mock objects into service/object you want to test.
public final IMocksControl mockControl = createStrictControl();
@Before
public void setup() {
boxStatusRepoMock = mockControl.createMock(BoxStatusRepo.class);
boxRepoMock = mockControl.createMock(BoxRepo.class);
ReflectionTestUtils.setField(boxService, "boxStatusRepo", boxStatusRepoMock);
ReflectionTestUtils.setField(boxService, "boxRepo", boxRepoMock);
}
All the other code in stages 1-6 is to be put into a method with annotation @Test
Stage 1. You prepare data to be returned by mocked methods
Stage 2. You list expected calls of mock objects. The number and the order are important.
Stage 3. You call mockControl.replay();
Stage 4. You call some service method - the one which call mocks with their methods (you set them in stage 0). The service must not be a mock itself.
Stage 5. You call mockControl.verify();
Stage 6. Optionally you can check the value returned in stage 4.
A tutorial on easymock
add a comment |
up vote
0
down vote
Reading your question I can't understand if you omitted some lines. The syntax in the line with "anyTimes()" is correct, but Easymock doesn't work this way. It is supposed to be used in unit tests.
Stage 0. You insert/set mock objects into service/object you want to test.
public final IMocksControl mockControl = createStrictControl();
@Before
public void setup() {
boxStatusRepoMock = mockControl.createMock(BoxStatusRepo.class);
boxRepoMock = mockControl.createMock(BoxRepo.class);
ReflectionTestUtils.setField(boxService, "boxStatusRepo", boxStatusRepoMock);
ReflectionTestUtils.setField(boxService, "boxRepo", boxRepoMock);
}
All the other code in stages 1-6 is to be put into a method with annotation @Test
Stage 1. You prepare data to be returned by mocked methods
Stage 2. You list expected calls of mock objects. The number and the order are important.
Stage 3. You call mockControl.replay();
Stage 4. You call some service method - the one which call mocks with their methods (you set them in stage 0). The service must not be a mock itself.
Stage 5. You call mockControl.verify();
Stage 6. Optionally you can check the value returned in stage 4.
A tutorial on easymock
add a comment |
up vote
0
down vote
up vote
0
down vote
Reading your question I can't understand if you omitted some lines. The syntax in the line with "anyTimes()" is correct, but Easymock doesn't work this way. It is supposed to be used in unit tests.
Stage 0. You insert/set mock objects into service/object you want to test.
public final IMocksControl mockControl = createStrictControl();
@Before
public void setup() {
boxStatusRepoMock = mockControl.createMock(BoxStatusRepo.class);
boxRepoMock = mockControl.createMock(BoxRepo.class);
ReflectionTestUtils.setField(boxService, "boxStatusRepo", boxStatusRepoMock);
ReflectionTestUtils.setField(boxService, "boxRepo", boxRepoMock);
}
All the other code in stages 1-6 is to be put into a method with annotation @Test
Stage 1. You prepare data to be returned by mocked methods
Stage 2. You list expected calls of mock objects. The number and the order are important.
Stage 3. You call mockControl.replay();
Stage 4. You call some service method - the one which call mocks with their methods (you set them in stage 0). The service must not be a mock itself.
Stage 5. You call mockControl.verify();
Stage 6. Optionally you can check the value returned in stage 4.
A tutorial on easymock
Reading your question I can't understand if you omitted some lines. The syntax in the line with "anyTimes()" is correct, but Easymock doesn't work this way. It is supposed to be used in unit tests.
Stage 0. You insert/set mock objects into service/object you want to test.
public final IMocksControl mockControl = createStrictControl();
@Before
public void setup() {
boxStatusRepoMock = mockControl.createMock(BoxStatusRepo.class);
boxRepoMock = mockControl.createMock(BoxRepo.class);
ReflectionTestUtils.setField(boxService, "boxStatusRepo", boxStatusRepoMock);
ReflectionTestUtils.setField(boxService, "boxRepo", boxRepoMock);
}
All the other code in stages 1-6 is to be put into a method with annotation @Test
Stage 1. You prepare data to be returned by mocked methods
Stage 2. You list expected calls of mock objects. The number and the order are important.
Stage 3. You call mockControl.replay();
Stage 4. You call some service method - the one which call mocks with their methods (you set them in stage 0). The service must not be a mock itself.
Stage 5. You call mockControl.verify();
Stage 6. Optionally you can check the value returned in stage 4.
A tutorial on easymock
answered Nov 22 at 18:28
dimirsen
31428
31428
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434152%2fjava-test-with-easymock%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown