Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhie <phie@phie.ovh>2018-08-21 18:39:12 +0300
committerPhie <phie@phie.ovh>2018-08-21 18:39:12 +0300
commit7d24cc0120859fc4e46b301c08effc97ddfbb1bb (patch)
tree94b5b52074022ceccd4c91073f217feaec38ca40 /vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php
first commit for Carnet NC server
Diffstat (limited to 'vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php')
-rw-r--r--vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php b/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php
new file mode 100644
index 0000000..a3ecb57
--- /dev/null
+++ b/vendor/sebastian/diff/tests/LCS/TimeEfficientImplementationTest.php
@@ -0,0 +1,22 @@
+<?php
+/*
+ * This file is part of sebastian/diff.
+ *
+ * (c) Sebastian Bergmann <sebastian@phpunit.de>
+ *
+ * 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;
+ }
+}