Dummy,Stub,Fake,Mock简介

转载自:https://www.cnblogs.com/2018/archive/2012/09/18/2681117.html

Dummy

An object that is passed around but never used. Typically used to fulfill the parameter list of

a method.

Stub

An object that always returns the same canned response. May also hold some dummy state.

Fake

An actual working implementation (not of production quality or configuration) that can replace the real implementation.

Mock

An object that represents a series of expectations and provides canned responses.

1、Dummy
A dummy object is the easiest of the four test double types to use. Remember, it’s designed to help fill parameter lists or fulfill some mandatory field requirements where you know the object will never get used. In many cases, you can even pass in an empty or null object.

 @Test

  public void tenPercentDiscount() {

    String dummyName = "Riley";        

    Ticket ticket = new Ticket(dummyName,  new BigDecimal("10"));

    assertEquals(new BigDecimal("9.0"), ticket.getDiscountPrice());

  }

2、Stub object
You typically use a stub object when you want to replace a real implementation with an

object that will return the same response every time. Let’s return to our theater ticket

pricing example to see this in action.

 @Test

  public void tenPercentDiscount() {

Price price = new StubPrice(); 

 Ticket ticket = new Ticket(price);           

    assertEquals(9.0,

                 ticket.getDiscountPrice().doubleValue(),

                0.0001);       

  }

public class StubPrice implements Price {

  @Override

  public BigDecimal getInitialPrice() {

    return new BigDecimal("10");         

  }

}

3、Fake object
A fake object can be seen as an enhanced stub that almost does the same work as your production code, but that takes a few shortcuts in order to fulfill your testing require -ments. Fakes are especially useful when you’d like your code to run against something that’s very close to the real third-party subsystem or dependency that you’ll use in the live implementation

Most well-grounded Java developers will sooner or later have to write code that interacts with a database, typically performing CRUD operations on Java objects. Prov-ing that your Data Access Object ( DAO) code works before running it against the pro-duction database is often left until the system integration test phase, or it isn’t checked at all! It would be of great benefit if you could check that the DAO code works during your unit test or integration test phase, giving you that all important, fast feedback.

A fake object could be used in this case—one that represents the database you’re interacting with. But writing your own fake object representing a database would be quite difficult! Luckily, over recent years, in-memory databases have become small enough, lightweight enough, and feature-rich enough to act as a fake object for you.

HSQLDB (www.hsqldb.org) is a popular in-memory database used for this purpose.

4、Mock object
Mock objects are related to the stub test doubles that you’ve already met, but stub objects are usually pretty dumb beasts. For example, stubs typically fake out methods so that they always give the same result when you call them. This doesn’t provide any way to model state-dependent behavior.

Mockito (available from http://mockito.org/

@Test

public void tenPercentDiscount() {

Price price = mock(Price.class);          

when(price.getInitialPrice()).

     ➥ thenReturn(new BigDecimal("10"));           

Ticket ticket = new Ticket(price, new BigDecimal("0.9"));

assertEquals(9.0, ticket.getDiscountPrice().doubleValue(), 0.000001);

verify(price).getInitialPrice();

}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值