Skip to content

Commit a36caa0

Browse files
committed
Update CreateDBAccessTest.php
1 parent cb9d30d commit a36caa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/webfiori/framework/test/cli/CreateDBAccessTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function test00() {
4141
"Entity class name:\n",
4242
"Entity namespace: Enter = 'app\\entity'\n",
4343
"Would you like to have update methods for every single column?(y/N)\n",
44-
"Info: New class was created at \"app\database\".\n"
44+
"Info: New class was created at \"". ROOT_PATH.DS."app".DS."database\".\n"
4545
], $runner->getOutput());
4646
$clazz = '\\app\\database\\EmployeeOperationsDB';
4747
$this->assertTrue(class_exists($clazz));
@@ -76,7 +76,7 @@ public function test01() {
7676
"Entity class name:\n",
7777
"Entity namespace: Enter = 'app\\entity'\n",
7878
"Would you like to have update methods for every single column?(y/N)\n",
79-
"Info: New class was created at \"app\database\\empl\".\n"
79+
"Info: New class was created at \"". ROOT_PATH.DS."app".DS."database".DS."empl\".\n"
8080
], $runner->getOutput());
8181
$clazz = '\\app\\database\\empl\\EmployeeSDB';
8282
$this->assertTrue(class_exists($clazz));
@@ -119,7 +119,7 @@ public function test02() {
119119
"Entity class name:\n",
120120
"Entity namespace: Enter = 'app\\entity'\n",
121121
"Would you like to have update methods for every single column?(y/N)\n",
122-
"Info: New class was created at \"app\database\".\n"
122+
"Info: New class was created at \"". ROOT_PATH.DS."app".DS."database\".\n"
123123
], $runner->getOutput());
124124
$clazz = '\\app\\database\\Position2xDB';
125125
$this->assertTrue(class_exists($clazz));

0 commit comments

Comments
 (0)