diff options
Diffstat (limited to 'tests/utils/RoutineTest.php')
-rw-r--r-- | tests/utils/RoutineTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/utils/RoutineTest.php b/tests/utils/RoutineTest.php index b768725..51f558f 100644 --- a/tests/utils/RoutineTest.php +++ b/tests/utils/RoutineTest.php @@ -21,6 +21,7 @@ class RoutineTest extends TestCase public function getReturnTypeProvider() { return array( + array('', array('', '', '', '', '')), array('TEXT', array('', '', 'TEXT', '', '')), array('INT(20)', array('', '', 'INT', '20', '')), array( @@ -59,6 +60,7 @@ class RoutineTest extends TestCase public function getParameterProvider() { return array( + array('', array('', '', '', '', '')), array('`foo` TEXT', array('', 'foo', 'TEXT', '', '')), array('`foo` INT(20)', array('', 'foo', 'INT', '20', '')), array( |