コード例 #1
0
ファイル: SortTest.php プロジェクト: nilportugues/repository
 public function testItThrowsExceptionIfPropertyNameNotFound()
 {
     $properties = [];
     $sort = new Sort($properties);
     $this->setExpectedException(InvalidArgumentException::class);
     $sort->property('aPropertyName');
 }