public function Framework_MockObjectTest::testMockedMethodIsCalledAtLeastTwice2 in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit-mock-objects/tests/MockObjectTest.php \Framework_MockObjectTest::testMockedMethodIsCalledAtLeastTwice2()
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php, line 77
Class
- Framework_MockObjectTest
- @since Class available since Release 3.0.0
Code
public function testMockedMethodIsCalledAtLeastTwice2() {
$mock = $this
->getMock('AnInterface');
$mock
->expects($this
->atLeast(2))
->method('doSomething');
$mock
->doSomething();
$mock
->doSomething();
$mock
->doSomething();
}