From 54a605472838b7b670d6d802ad92fba454ea4d81 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 18 Mar 2020 13:53:22 -0400 Subject: [PATCH] Remove meaningless PHP version test --- tests/CoreTest.php | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/tests/CoreTest.php b/tests/CoreTest.php index 20f99f1..d99ed12 100644 --- a/tests/CoreTest.php +++ b/tests/CoreTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2020 Timothy J. Warren + * @copyright 2012 - 2019 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 @@ -25,20 +25,6 @@ use PDO; * @extends UnitTestCase */ class CoreTest extends TestCase { - - /** - * TestPHPVersion function. - * - * @access public - * @return void - */ - public function testPHPVersion(): void - { - $this->assertTrue(PHP_VERSION_ID >= 70100); - $this->assertTrue(PHP_MAJOR_VERSION >= 7); - $this->assertTrue(PHP_MINOR_VERSION >= 1); - } - /** * TestHasPDO function. *