TimeEfficientImplementationTest.php 534 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of sebastian/diff.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace SebastianBergmann\Diff\LCS;
  11. /**
  12. * @covers SebastianBergmann\Diff\LCS\TimeEfficientImplementation
  13. */
  14. class TimeEfficientImplementationTest extends LongestCommonSubsequenceTest
  15. {
  16. protected function createImplementation()
  17. {
  18. return new TimeEfficientImplementation;
  19. }
  20. }