File tree 4 files changed +3
-30
lines changed
4 files changed +3
-30
lines changed Original file line number Diff line number Diff line change 26
26
"symfony/test-pack" : " ^1.0"
27
27
},
28
28
"scripts" : {
29
- "test" : " php vendor/bin/phpunit --testdox tests"
29
+ "test" : " php vendor/bin/phpunit --testdox tests --coverage-clover clover.xml "
30
30
},
31
31
"bin" : [
32
32
" bin/studoo"
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ public function __construct()
13
13
$ this ->add (new \Studoo \Command \DefaultCommand ());
14
14
$ this ->add (new \Studoo \Command \CreateStudentCommand ());
15
15
$ this ->add (new \Studoo \Command \CreateFileDefaultCommand ());
16
- $ this ->add (new \Studoo \Command \GestionStudent ());
17
16
18
17
CommandBanner::setVersion ($ this ->getVersion ());
19
18
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
namespace Command ;
4
4
5
- use Studoo \Command \GestionStudent ;
5
+ use Studoo \Command \CreateFileDefaultCommand ;
6
6
use Studoo \Service \Command \CommandBanner ;
7
7
use PHPUnit \Framework \TestCase ;
8
8
use Symfony \Component \Console \Application ;
@@ -17,7 +17,7 @@ protected function setUp(): void
17
17
{
18
18
$ application = new Application ("Manage Student CLI " , "0.2.0@alpha " );
19
19
CommandBanner::setVersion ($ application ->getVersion ());
20
- $ application ->add (new GestionStudent ());
20
+ $ application ->add (new CreateFileDefaultCommand ());
21
21
$ command = $ application ->find ("file:default " );
22
22
$ this ->commandeTester = new CommandTester ($ command );
23
23
}
You can’t perform that action at this time.
0 commit comments