コード例 #1
0
ファイル: AssertTest.php プロジェクト: nilportugues/assert
 public function testItWillAllowNullOrFailsIfDataIsInvalid()
 {
     $this->setExpectedException(\Exception::class);
     Assert::nullOrIsEmail('not-a-mail');
 }