X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsebastian%2Fdiff%2Ftests%2FLCS%2FMemoryEfficientImplementationTest.php;fp=vendor%2Fsebastian%2Fdiff%2Ftests%2FLCS%2FMemoryEfficientImplementationTest.php;h=b0e57a4720b8d49b91c4016a2075a0224f3cb420;hp=0000000000000000000000000000000000000000;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae diff --git a/vendor/sebastian/diff/tests/LCS/MemoryEfficientImplementationTest.php b/vendor/sebastian/diff/tests/LCS/MemoryEfficientImplementationTest.php new file mode 100644 index 000000000..b0e57a472 --- /dev/null +++ b/vendor/sebastian/diff/tests/LCS/MemoryEfficientImplementationTest.php @@ -0,0 +1,22 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace SebastianBergmann\Diff\LCS; + +/** + * @covers SebastianBergmann\Diff\LCS\MemoryEfficientImplementation + */ +class MemoryEfficientImplementationTest extends LongestCommonSubsequenceTest +{ + protected function createImplementation() + { + return new MemoryEfficientImplementation; + } +}