public function flush() { $this->system->flush(); $this->normal->flush(); }
function it_flushes(System $system, System $normal) { $system->flush()->shouldBeCalled(); $normal->flush()->shouldBeCalled(); $this->flush(); }