Skip to content

Commit 71c87a2

Browse files
peter279kgrogy
authored andcommitted
Enhance test stuffs
1 parent 557fd99 commit 71c87a2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"php-parallel-lint/php-console-highlighter": "For colored console output"
1919
},
2020
"require-dev": {
21-
"phpunit/phpunit": "~4.5",
21+
"phpunit/phpunit": "^4.8.36",
2222
"php-parallel-lint/php-parallel-lint": "~1.0"
2323
},
2424
"bin": ["var-dump-check"],

tests/JakubOnderka/PhpVarDumpCheck/CheckTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22

33
use JakubOnderka\PhpVarDumpCheck;
4+
use PHPUnit\Framework\TestCase;
45

5-
class CheckTest extends PHPUnit_Framework_TestCase
6+
class CheckTest extends TestCase
67
{
78
protected $uut;
89

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?php
2-
$loader = require_once __DIR__ . '/../vendor/autoload.php';
2+
require_once __DIR__ . '/../vendor/autoload.php';

var-dump-check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env php
22
<?php
33

4-
require __DIR__ . '/var-dump-check.php';
4+
require __DIR__ . '/var-dump-check.php';

0 commit comments

Comments
 (0)