Skip to content

Commit 7e5c5b9

Browse files
committed
we use phpunit now!
1 parent 2292179 commit 7e5c5b9

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

composer.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,13 @@
1717
"files": [
1818
"src/helpers.php"
1919
]
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Proxy\\Tests\\": "tests/"
24+
}
25+
},
26+
"require-dev": {
27+
"phpunit/phpunit": "7"
2028
}
21-
}
29+
}

tests/TestCase.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Proxy\Tests;
4+
5+
abstract class TestCase extends \PHPUnit\Framework\TestCase
6+
{
7+
// TODO
8+
}

0 commit comments

Comments
 (0)