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

  2. <small id='BVaWv'></small><noframes id='BVaWv'>

      <tfoot id='BVaWv'></tfoot>
        <bdo id='BVaWv'></bdo><ul id='BVaWv'></ul>

    1. 每次测试都会重置 Mock 对象吗?

      时间:2023-09-25

    2. <tfoot id='7cq1x'></tfoot>

      • <small id='7cq1x'></small><noframes id='7cq1x'>

          <legend id='7cq1x'><style id='7cq1x'><dir id='7cq1x'><q id='7cq1x'></q></dir></style></legend>
              <i id='7cq1x'><tr id='7cq1x'><dt id='7cq1x'><q id='7cq1x'><span id='7cq1x'><b id='7cq1x'><form id='7cq1x'><ins id='7cq1x'></ins><ul id='7cq1x'></ul><sub id='7cq1x'></sub></form><legend id='7cq1x'></legend><bdo id='7cq1x'><pre id='7cq1x'><center id='7cq1x'></center></pre></bdo></b><th id='7cq1x'></th></span></q></dt></tr></i><div id='7cq1x'><tfoot id='7cq1x'></tfoot><dl id='7cq1x'><fieldset id='7cq1x'></fieldset></dl></div>
                <bdo id='7cq1x'></bdo><ul id='7cq1x'></ul>
                  <tbody id='7cq1x'></tbody>
                本文介绍了每次测试都会重置 Mock 对象吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我正在使用 Mockito 框架在我的 JUnit 测试中创建 Mock 对象.每个 mock 都知道它调用了哪些方法,所以在我的测试中我可以编写

                I'm using the Mockito framework to create Mock objects in my JUnit tests. Each mock knows what methods have been called on it, so during my tests I can write

                verify(myMock, atLeastOnce()).myMethod();
                

                我想知道这种内部模拟知识是否会在我的测试中持续存在?如果它确实持续存在,那么在两个测试中使用相同的 verify 方法时我可能会得到误报.

                I am wondering if this internal mock knowledge of what it has called will persist across my tests? If it does persist, then I could be getting false positives when using the same verify method in two tests.

                代码示例

                @RunWith(MockitoJUnitRunner.class)
                public class EmrActivitiesImplTest {
                    
                    @Mock private MyClass myMock;
                    
                    @Before
                    public void setup() {
                        when(myMock.myMethod()).thenReturn("hello");
                    }
                    
                    @Test
                    public void test1() {
                        // ..some logic
                        verify(myMock, atLeastOnce()).myMethod();
                    }
                    
                    @Test
                    public void test2() {
                        // ..some other logic
                        verify(myMock, atLeastOnce()).myMethod();
                    }  
                }
                

                模拟状态保持不变 - test2 无论如何都会通过,因为 test1 的验证方法通过了

                Mock state is persisted - test2 will pass regardless, since test1's verify method passed

                模拟状态已重置 - 如果未调用 myMock.myMethod(),test2 将失败

                Mock state is reset - test2 will fail if myMock.myMethod() isn't called

                推荐答案

                JUnit 每次运行新的测试方法时都会创建一个新的测试类实例,并且每次创建一个新的测试方法时都会运行 @Before 方法新的测试班.您可以轻松地对其进行测试:

                JUnit creates a new instance of test class each time it runs a new test method and runs @Before method each time it creates a new test class. You can easily test it:

                @Before
                public void setup() {
                    System.out.println("setup");
                    when(myMock.myMethod()).thenReturn("hello");
                }
                

                并且 MockitoJUnitRunner 将为每个测试方法创建一个新的 MyMock 模拟实例.

                And MockitoJUnitRunner will create a new MyMock mock instance for every test method.

                这篇关于每次测试都会重置 Mock 对象吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Mockito:在使用@InjectMocks 时模拟被测试方法调用的 下一篇:即使在添加 @PrepareForTest 之后,Mockito 也会要求为

                相关文章

                最新文章

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

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

                    <tfoot id='HzccB'></tfoot>