summaryrefslogtreecommitdiffstats
path: root/tests/utils/RoutineTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/RoutineTest.php')
-rw-r--r--tests/utils/RoutineTest.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/utils/RoutineTest.php b/tests/utils/RoutineTest.php
index 1f95c33..950f1cc 100644
--- a/tests/utils/RoutineTest.php
+++ b/tests/utils/RoutineTest.php
@@ -1,8 +1,12 @@
<?php
+namespace SqlParser\Tests\Utils;
+
use SqlParser\Parser;
use SqlParser\Utils\Routine;
+use SqlParser\Tests\TestCase;
+
class RoutineTest extends TestCase
{
@@ -72,7 +76,8 @@ class RoutineTest extends TestCase
)
),
array(
- 'CREATE PROCEDURE `foo`(IN `baz\\` INT(001) zerofill, out bazz varchar(15) charset utf8) BEGIN SELECT NULL; END',
+ 'CREATE PROCEDURE `foo`(IN `baz\\` INT(001) zerofill, out bazz varchar(15) charset utf8) '.
+ 'BEGIN SELECT NULL; END',
array(
'num' => 2,
'dir' => array(
@@ -99,5 +104,4 @@ class RoutineTest extends TestCase
),
);
}
-
}