Merge
This commit is contained in:
21
tests/ServiceProviderTest.php
Normal file
21
tests/ServiceProviderTest.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace TomLingham\Tests\Searchy;
|
||||
|
||||
use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
|
||||
use TomLingham\Searchy\SearchBuilder;
|
||||
|
||||
/**
|
||||
* This is the service provider test.
|
||||
*
|
||||
* @author Vincent Klaiber <hello@vinkla.com>
|
||||
*/
|
||||
class ServiceProviderTest extends AbstractTestCase
|
||||
{
|
||||
use ServiceProviderTrait;
|
||||
|
||||
public function testSearchBuilderIsInjectable()
|
||||
{
|
||||
$this->assertIsInjectable(SearchBuilder::class);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user