Skip to content

Commit 1cb03c9

Browse files
committed
tests: added use Tester\Assert
1 parent 189cb5c commit 1cb03c9

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

tests/PhpGenerator/ClassType.from.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
namespace Abc;
1111

1212
use Nette\PhpGenerator\ClassType,
13-
Assert,
14-
ReflectionClass;
13+
ReflectionClass,
14+
Tester\Assert;
1515

1616

1717
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/ClassType.from.trait.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
* @phpversion 5.4
99
*/
1010

11-
use Nette\PhpGenerator\ClassType;
11+
use Nette\PhpGenerator\ClassType,
12+
Tester\Assert;
1213

1314

1415
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/ClassType.interface.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
* @package Nette\Utils
88
*/
99

10-
use Nette\PhpGenerator\ClassType;
10+
use Nette\PhpGenerator\ClassType,
11+
Tester\Assert;
1112

1213

1314
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/ClassType.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
*/
99

1010
use Nette\PhpGenerator\ClassType,
11-
Nette\PhpGenerator\PhpLiteral;
11+
Nette\PhpGenerator\PhpLiteral,
12+
Tester\Assert;
1213

1314

1415
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/Helpers.dump().phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
*/
99

1010
use Nette\PhpGenerator\Helpers,
11-
Nette\PhpGenerator\PhpLiteral;
11+
Nette\PhpGenerator\PhpLiteral,
12+
Tester\Assert;
1213

1314

1415
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/Helpers.format.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
* @package Nette\Utils
88
*/
99

10-
use Nette\PhpGenerator\Helpers;
10+
use Nette\PhpGenerator\Helpers,
11+
Tester\Assert;
1112

1213

1314
require __DIR__ . '/../bootstrap.php';

tests/PhpGenerator/Method.closure.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
* @package Nette\Utils
88
*/
99

10-
use Nette\PhpGenerator\Method;
10+
use Nette\PhpGenerator\Method,
11+
Tester\Assert;
1112

1213

1314
require __DIR__ . '/../bootstrap.php';

0 commit comments

Comments
 (0)