<bdo id='ZUYXq'></bdo><ul id='ZUYXq'></ul>

<legend id='ZUYXq'><style id='ZUYXq'><dir id='ZUYXq'><q id='ZUYXq'></q></dir></style></legend>

<i id='ZUYXq'><tr id='ZUYXq'><dt id='ZUYXq'><q id='ZUYXq'><span id='ZUYXq'><b id='ZUYXq'><form id='ZUYXq'><ins id='ZUYXq'></ins><ul id='ZUYXq'></ul><sub id='ZUYXq'></sub></form><legend id='ZUYXq'></legend><bdo id='ZUYXq'><pre id='ZUYXq'><center id='ZUYXq'></center></pre></bdo></b><th id='ZUYXq'></th></span></q></dt></tr></i><div id='ZUYXq'><tfoot id='ZUYXq'></tfoot><dl id='ZUYXq'><fieldset id='ZUYXq'></fieldset></dl></div>

        <tfoot id='ZUYXq'></tfoot>

        <small id='ZUYXq'></small><noframes id='ZUYXq'>

        如何验证调用了非模拟对象的方法?

        时间:2023-09-25
              <bdo id='dAkJJ'></bdo><ul id='dAkJJ'></ul>

              <i id='dAkJJ'><tr id='dAkJJ'><dt id='dAkJJ'><q id='dAkJJ'><span id='dAkJJ'><b id='dAkJJ'><form id='dAkJJ'><ins id='dAkJJ'></ins><ul id='dAkJJ'></ul><sub id='dAkJJ'></sub></form><legend id='dAkJJ'></legend><bdo id='dAkJJ'><pre id='dAkJJ'><center id='dAkJJ'></center></pre></bdo></b><th id='dAkJJ'></th></span></q></dt></tr></i><div id='dAkJJ'><tfoot id='dAkJJ'></tfoot><dl id='dAkJJ'><fieldset id='dAkJJ'></fieldset></dl></div>
            • <tfoot id='dAkJJ'></tfoot>

              <legend id='dAkJJ'><style id='dAkJJ'><dir id='dAkJJ'><q id='dAkJJ'></q></dir></style></legend>
                <tbody id='dAkJJ'></tbody>

            • <small id='dAkJJ'></small><noframes id='dAkJJ'>

                1. 本文介绍了如何验证调用了非模拟对象的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  mockito 似乎只验证是否调用了模拟对象的方法,并且模拟对象总是有类似 doReturn().when(mock object)

                  It seems mockito only verifies whether a method of a mock object is called and the mock object always have something like doReturn().when(mock object)

                  但是我可以创建一个模拟对象并定义 doReturn().when(mock object)然后验证另一个对象的方法是否被调用?

                  But can I create a mock object and define doReturn().when(mock object) and then verify a method of another object is called?

                  这就是我想要做的:我定义了一个 mockEnvironment 并且无论发生什么都返回一个响应.但是接下来我想验证一下 anotherObj 的不同方法是在不同的情况下被调用的.

                  Here is what I want to do: I define a mockEnvironment and return a response no matter what happens. But then I want to verify different methods of anotherObj is called in different cases.

                  怎么做?

                  public class BaseClass {
                      private Environment mockEnvironment;
                      @Test
                      public void testcase () {
                       setMockitoEnvironment(); 
                       response = foo(mockEnvironment, argument1);
                       verify(anotherObj).codePath1(...);
                       response = foo(mockEnvironment, argument2);
                       verify(anotherObj).codePath2(...);
                     }
                  }
                  
                  //this method successfully return a response with any input 
                  //because I do not care how response is eventually generated, 
                  //I only care whether code path reaches createResponse() via 
                  //code path 1 or code path 2.
                  private void setMockitoEnvironment() {
                      mockEnvironment = mock(Environment.class);
                      doReturn (response).when(mockEnvironment).createResponse(for any input);
                  }
                  private Response foo(...) {
                      ... 
                      return createResponse(...);
                  }
                  

                  推荐答案

                  你可以使用 Mockito 间谍 .如果您将 anotherObj 设置为间谍,您可以验证对该对象的方法调用.在您的示例中,您需要确保对 foo 的调用使用 spy 而不是 anotherObj 的普通实现.间谍是这样设置的:

                  You can use a Mockito Spy for this. If you setup anotherObj as a spy you can verify method calls on that object. In your example you need to make sure that the call to foo uses the spy instead of an ordinary implementation of anotherObj. The spy is setup something like this:

                  AnotherClass anotherObjSpy = Mockito.spy(new AnotherClass());
                  // do stuff -- e.g. anotherObjSpy.foo(...);
                  verify(anotherObjSpy).codePath1(...);
                  

                  这篇关于如何验证调用了非模拟对象的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何解决不必要的存根异常 下一篇:Mockito:模拟将在 for 循环中循环的数组列表

                  相关文章

                  最新文章

                  • <bdo id='gvMES'></bdo><ul id='gvMES'></ul>
                2. <legend id='gvMES'><style id='gvMES'><dir id='gvMES'><q id='gvMES'></q></dir></style></legend>

                  1. <i id='gvMES'><tr id='gvMES'><dt id='gvMES'><q id='gvMES'><span id='gvMES'><b id='gvMES'><form id='gvMES'><ins id='gvMES'></ins><ul id='gvMES'></ul><sub id='gvMES'></sub></form><legend id='gvMES'></legend><bdo id='gvMES'><pre id='gvMES'><center id='gvMES'></center></pre></bdo></b><th id='gvMES'></th></span></q></dt></tr></i><div id='gvMES'><tfoot id='gvMES'></tfoot><dl id='gvMES'><fieldset id='gvMES'></fieldset></dl></div>

                      <small id='gvMES'></small><noframes id='gvMES'>

                      <tfoot id='gvMES'></tfoot>