File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
tests/PHPCR/Tests/Util/Console/Command Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 88use Symfony \Component \Console \Helper \HelperSet ;
99use PHPCR \Util \Console \Helper \PhpcrHelper ;
1010
11- require_once (__DIR__ .'/Stubb /MockNode.php ' );
11+ require_once (__DIR__ .'/Stubs /MockNode.php ' );
1212
1313abstract class BaseCommandTest extends \PHPUnit_Framework_TestCase
1414{
@@ -18,7 +18,7 @@ public function setUp()
1818 $ this ->workspace = $ this ->getMock ('PHPCR\WorkspaceInterface ' );
1919 $ this ->repository = $ this ->getMock ('PHPCR\RepositoryInterface ' );
2020
21- $ this ->node1 = $ this ->getMock ('PHPCR\Tests\Util\Console\Command\Stubb \MockNode ' );
21+ $ this ->node1 = $ this ->getMock ('PHPCR\Tests\Util\Console\Command\Stubs \MockNode ' );
2222
2323 $ this ->dumperHelper = $ this ->getMockBuilder (
2424 'PHPCR\Util\Console\Helper\PhpcrConsoleDumperHelper '
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public function setUp()
1212 parent ::setUp ();
1313 $ this ->application ->add (new NodeTypeListCommand ());
1414 $ this ->nodeTypeManager = $ this ->getMockBuilder (
15- 'PHPCR\Tests\Util\Console\Command\Stubb \MockNodeTypeManager '
15+ 'PHPCR\Tests\Util\Console\Command\Stubs \MockNodeTypeManager '
1616 )->disableOriginalConstructor ()->getMock ();
1717 }
1818
Original file line number Diff line number Diff line change 55use Symfony \Component \Console \Application ;
66use PHPCR \Util \Console \Command \NodeTypeRegisterCommand ;
77
8- require_once (__DIR__ .'/Stubb /MockNodeTypeManager.php ' );
8+ require_once (__DIR__ .'/Stubs /MockNodeTypeManager.php ' );
99
1010class NodeTypeRegisterCommandTest extends BaseCommandTest
1111{
@@ -14,7 +14,7 @@ public function setUp()
1414 parent ::setUp ();
1515 $ this ->application ->add (new NodeTypeRegisterCommand ());
1616 $ this ->nodeTypeManager = $ this ->getMockBuilder (
17- 'PHPCR\Tests\Util\Console\Command\Stubb \MockNodeTypeManager '
17+ 'PHPCR\Tests\Util\Console\Command\Stubs \MockNodeTypeManager '
1818 )->disableOriginalConstructor ()->getMock ();
1919 }
2020
Original file line number Diff line number Diff line change 11<?php
22
3- namespace PHPCR \Tests \Util \Console \Command \Stubb ;
3+ namespace PHPCR \Tests \Util \Console \Command \Stubs ;
44
55use PHPCR \NodeInterface ;
66
Original file line number Diff line number Diff line change 11<?php
22
3- namespace PHPCR \Tests \Util \Console \Command \Stubb ;
3+ namespace PHPCR \Tests \Util \Console \Command \Stubs ;
44
55use PHPCR \NodeType \NodeTypeManagerInterface ;
66
You can’t perform that action at this time.
0 commit comments