/**
  * @Then the code field should be disabled
  */
 public function theCodeFieldShouldBeDisabled()
 {
     Assert::true($this->updatePage->isCodeDisabled(), 'Code should be immutable, but it does not.');
 }
 function it_saves_changes(UpdatePageInterface $updatePage)
 {
     $updatePage->saveChanges()->shouldBeCalled();
     $this->iSaveMyChanges();
 }