File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,13 @@ jobs:
4343 run : " composer install --no-interaction --no-progress --no-suggest"
4444
4545 - name : " EasyCodingStandards for src"
46- run : " vendor/bin/ecs check src --no-interaction --no-progress-bar"
46+ run : " vendor/bin/ecs check src tests --no-interaction --no-progress-bar"
4747
4848 - name : " PhpStan for src"
4949 run : " vendor/bin/phpstan analyse --error-format=checkstyle src --level=8 | cs2pr"
5050
51+ - name : " PhpStan for tests"
52+ run : " vendor/bin/phpstan analyse --error-format=checkstyle tests --level=6 | cs2pr"
53+
5154 - name : " PHPUnit Test"
5255 run : " vendor/bin/phpunit tests/BaseTest.php"
Original file line number Diff line number Diff line change 44
55namespace SEEC \PhpUnit \Helper ;
66
7- use PHPUnit \Framework \TestCase ;
87use function array_column ;
98use function count ;
109use PHPUnit \Framework \Constraint \Callback ;
1110use PHPUnit \Framework \Constraint \Constraint ;
11+ use PHPUnit \Framework \TestCase ;
1212
1313trait ConsecutiveParams
1414{
Original file line number Diff line number Diff line change 66
77use PHPUnit \Framework \TestCase ;
88use SEEC \PhpUnit \Helper \ConsecutiveParams ;
9- use stdClass ;
109
1110final class TestableClass
1211{
You can’t perform that action at this time.
0 commit comments