validate() public method

public validate ( $input )
コード例 #1
0
 public function testShouldInvalidateWhenItIsNotAValidFile()
 {
     $rule = new Mimetype('application/octet-stream');
     $this->assertFalse($rule->validate(__DIR__));
 }
コード例 #2
0
ファイル: MimetypeTest.php プロジェクト: 00F100/Validation
 public function testShouldInvalidateWhenNotStringNorSplFileInfo()
 {
     $rule = new Mimetype('application/octet-stream');
     $this->assertFalse($rule->validate(array(__FILE__)));
 }