Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active June 27, 2021 01:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/9c07677d781d362b513265371ee425ae to your computer and use it in GitHub Desktop.
Save mcsee/9c07677d781d362b513265371ee425ae to your computer and use it in GitHub Desktop.
<?
use PHPUnit\Framework\TestCase;
class LikePatternSimplifierTest1 extends TestCase {
function test01NoPatternsShouldReturnEmpty() {
$this->assertEquals(
[],
(new LikePatternSimplifier())->simplify([]));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment