开发者

Mocking objects in Python

开发者 https://www.devze.com 2023-03-18 04:49 出处:网络
I\'m new to Unit testing and mocking objects in Python. I have a function that I need to create a unit test for.

I'm new to Unit testing and mocking objects in Python. I have a function that I need to create a unit test for.

def BuildBall(self, material):
  """Create a Ball from material."""
  result = {}
  for b in xrange(material.ball_size()):
    ball = material.ball(b)
    result[ball.name()] = (ball.name(), ball.description())
  return result

I want to create a dummy object(material) and pass it to BuildBall(), so that I 开发者_开发技巧can predict what the result will look like in my unit test.

I'm not too sure how I can pass a dummy object to my method in this case. Any idea if I can use mox to create a dummy object in my case?

Thanks in advance


Take a look at the Python Mocker package: It allows you to easily generate objects that mock a certain functionality for testing. You can find a simple example here.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号