You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
440 B

8 years ago
  1. <?php
  2. namespace TomLingham\Tests\Searchy;
  3. use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
  4. use TomLingham\Searchy\SearchBuilder;
  5. /**
  6. * This is the service provider test.
  7. *
  8. * @author Vincent Klaiber <hello@vinkla.com>
  9. */
  10. class ServiceProviderTest extends AbstractTestCase
  11. {
  12. use ServiceProviderTrait;
  13. public function testSearchBuilderIsInjectable()
  14. {
  15. $this->assertIsInjectable(SearchBuilder::class);
  16. }
  17. }