for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Funivan\CabbageCore\String\StringList\Splitted;
use PHPUnit\Framework\TestCase;
class SplittedStringListTest extends TestCase
{
public function testAll(): void
self::assertSame(
['a', 'b'],
iterator_to_array((new SplittedStringList('!,\s*!', 'a, b'))->all())
);
}