Автор: Stuart Herbert (stuart.herbert@datasift.com)
Наследование: implements Phix_Project\ValidationLib4\Validator
 /**
  * @covers DataSift\Storyplayer\ValidationLib\MustBeValidStoryTemplate::validate()
  */
 public function testRejectsNonClasses()
 {
     // ----------------------------------------------------------------
     // setup your test
     $obj = new MustBeValidStoryTemplate();
     // ----------------------------------------------------------------
     // perform the change
     $result = $obj->validate("DataSift\\Storyplayer\\ValidationLib\\ClassDoesNotExist");
     // ----------------------------------------------------------------
     // test the results
     $this->assertNotNull($result);
     $this->assertFalse($result->isValid());
 }