engelsystem/tests/Unit/ServiceProviderTest.php

22 lines
509 B
PHP
Raw Normal View History

2017-10-31 13:40:13 +01:00
<?php
namespace Engelsystem\Test\Unit;
use Engelsystem\Application;
2017-10-31 14:15:19 +01:00
use PHPUnit_Framework_MockObject_MockObject as MockObject;
2017-10-31 13:40:13 +01:00
abstract class ServiceProviderTest extends TestCase
{
/**
* @param array $methods
2017-10-31 14:15:19 +01:00
* @return Application|MockObject
2017-10-31 13:40:13 +01:00
*/
protected function getApp($methods = ['make', 'instance'])
{
2017-10-31 14:15:19 +01:00
/** @var MockObject|Application $app */
2017-10-31 13:40:13 +01:00
return $this->getMockBuilder(Application::class)
->setMethods($methods)
->getMock();
}
}