コード例 #1
0
 function assertEnumValuesEquals(array $expected, E $actual, $maxLength = PHP_INT_MAX)
 {
     $this->assertEquals($expected, $actual->take($maxLength)->toValues());
 }
コード例 #2
0
ファイル: TestCaseEnumerable.php プロジェクト: athari/yalinqo
 public static function assertEnumValuesEquals(array $expected, E $actual, $maxLength = PHP_INT_MAX)
 {
     self::assertEquals($expected, $actual->take($maxLength)->toValues()->toArrayDeep());
 }