You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/tests/Unit/ServiceProviderTest.php

21 lines
448 B
PHTML

<?php
namespace Engelsystem\Test\Unit;
use Engelsystem\Application;
use PHPUnit\Framework\MockObject\MockObject;
abstract class ServiceProviderTest extends TestCase
{
/**
* @param array $methods
* @return Application|MockObject
*/
protected function getApp($methods = ['make', 'instance'])
{
return $this->getMockBuilder(Application::class)
->onlyMethods($methods)
->getMock();
}
}