for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Test\Vehsamrak\ListCollection;
use Vehsamrak\ListCollection\ArrayList;
class ArrayListTest extends AbstractListTest
{
protected function getListClassName(): string
return ArrayList::class;
}
public function getValidParameters()
return [
[[]],
[[['array']]],
[[['first', 'array'], ['second', 'array']]],
];
public function getInvalidParameters()
[['string']],
[[1]],
[[1, 'string']],
[[new self()]],
[[true]],