43 lines
923 B
PHP
43 lines
923 B
PHP
<?php
|
|
|
|
namespace SMW\Tests\Services;
|
|
|
|
use SMW\Services\SharedServicesContainer;
|
|
|
|
/**
|
|
* @covers \SMW\Services\SharedServicesContainer
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 2.3
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class SharedServicesContainerTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
SharedServicesContainer::class,
|
|
new SharedServicesContainer()
|
|
);
|
|
|
|
$this->assertInstanceOf(
|
|
'\Onoi\CallbackContainer\CallbackContainer',
|
|
new SharedServicesContainer()
|
|
);
|
|
}
|
|
|
|
public function testRegister() {
|
|
$containerBuilder = $this->getMockBuilder( '\Onoi\CallbackContainer\ContainerBuilder' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$containerBuilder->expects( $this->atLeastOnce() )
|
|
->method( 'registerCallback' );
|
|
|
|
$instance = new SharedServicesContainer();
|
|
$instance->register( $containerBuilder );
|
|
}
|
|
|
|
}
|