什么" stub"是指测试?

时间:2018-05-15 00:14:50

标签: android testing stub android-espresso

有人可以解释一下" stub"是指在测试环境中?例如,下面的评论意味着什么?

Segmentation fault (core dumped)

或者在这里:

@Before
    public void stubAllExternalIntents() {
        // By default Espresso Intents does not **stub** any Intents. Stubbing needs to be setup before
        // every test run. In this case all external Intents will be blocked.
        intending(not(isInternal())).respondWith(new ActivityResult(Activity.RESULT_OK, null));
    }

1 个答案:

答案 0 :(得分:0)

  

软件开发中的方法存根或简单存根是一块   用于代表其他编程功能的代码。存根   可以模拟现有代码的行为(例如a上的过程)   远程机器,这种方法通常称为模拟)或者是临时的   替代尚未开发的代码。

https://en.wikipedia.org/wiki/Method_stub