public function runCrudTests(WebGuy\CM5WebGuySteps $I)
 {
     $I->runSQLQueries('sql' . DIRECTORY_SEPARATOR . $this->subfolder . DIRECTORY_SEPARATOR . "init");
     $I->login($this->username, $this->password);
     $I->searchRecords($this);
     $I->createNewRecord($this);
     $I->editRecord($this);
     $I->deleteRecord($this);
 }
 public function runTests(WebGuy\CM5WebGuySteps $I)
 {
     $I->login($this->username, $this->password);
     $I->dontSeeLink($this->navSelector);
 }