Java Test with EasyMock












0














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.










share|improve this question



























    0














    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.










    share|improve this question

























      0












      0








      0







      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.










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 at 15:29









      Pink A

      42




      42
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            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

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            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






            share|improve this answer


























              0














              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






              share|improve this answer
























                0












                0








                0






                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






                share|improve this answer












                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







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 22 at 18:28









                dimirsen

                31428




                31428






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Berounka

                    Sphinx de Gizeh

                    Different font size/position of beamer's navigation symbols template's content depending on regular/plain...