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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2015-03-18 03:46:41 +0300
committerdiosmosis <benaka@piwik.pro>2015-03-18 03:46:41 +0300
commit9347d34ade2d368689998dc198b33727db4c4def (patch)
tree85f98108cec515d6c73629c733e11037397cb943 /tests
parent56150a206c8b5babe2ba63f9d1ac8294803fb773 (diff)
Adding more tests to DbTest::test_isOptimizeInnoDBSupported_ReturnsCorrectResult.
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Unit/DbTest.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/PHPUnit/Unit/DbTest.php b/tests/PHPUnit/Unit/DbTest.php
index acd6f1f497..70b4338866 100644
--- a/tests/PHPUnit/Unit/DbTest.php
+++ b/tests/PHPUnit/Unit/DbTest.php
@@ -26,7 +26,14 @@ class DbTest extends \PHPUnit_Framework_TestCase
array("10.0.17-MariaDB-1~trusty", false),
array("10.1.1-MariaDB-1~trusty", true),
array("10.2.0-MariaDB-1~trusty", true),
- array("10.6.19-0ubuntu0.14.04.1", false)
+ array("10.6.19-0ubuntu0.14.04.1", false),
+
+ // for sanity. maybe not ours.
+ array("", false),
+ array(0, false),
+ array(false, false),
+ array("slkdf(@*#lkesjfMariaDB", false),
+ array("slkdfjq3rujlkv", false),
);
}
} \ No newline at end of file