markCompleted(); $this->assertTrue($todo->isComplete()); } } /** * The same test in PhpSpec */ class TodoSpec extends ObjectBehavior { public function let() { $this->beConstructedWith('Write a blog post'); } public function it_can_complete_todo() { $this->markCompleted(); $this->isComplete()->shouldReturn(true); } }