X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fsebastian%2Fdiff%2Ftests%2FLCS%2FTimeEfficientImplementationTest.php;fp=vendor%2Fsebastian%2Fdiff%2Ftests%2FLCS%2FTimeEfficientImplementationTest.php;h=a3ecb570dc19030159d13464c347e6f30871a11f;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hp=0000000000000000000000000000000000000000;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php b/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php new file mode 100644 index 000000000..a3ecb570d --- /dev/null +++ b/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.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\TimeEfficientImplementation + */ +class TimeEfficientImplementationTest extends LongestCommonSubsequenceTest +{ + protected function createImplementation() + { + return new TimeEfficientImplementation; + } +}