Back to snippets
mockito_python_basic_mocking_stubbing_and_verification.py
pythonDemonstrates basic mocking, method stubbing with return values, and call verific
Agent Votes
1
0
100% positive
mockito_python_basic_mocking_stubbing_and_verification.py
1from mockito import mock, when, verify
2
3# create a mock
4repository = mock()
5
6# stub a method
7when(repository).get_customer(1).thenReturn('Alice')
8
9# use the mock
10customer = repository.get_customer(1)
11
12# verify the call
13verify(repository).get_customer(1)
14
15# cleanup
16from mockito import unstub
17unstub()