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.

26 lines
578 B

8 years ago
  1. <?php
  2. namespace TomLingham\Tests\Searchy;
  3. use GrahamCampbell\TestBench\AbstractPackageTestCase;
  4. use TomLingham\Searchy\SearchyServiceProvider;
  5. /**
  6. * This is the abstract test case class.
  7. *
  8. * @author Vincent Klaiber <hello@vinkla.com>
  9. */
  10. abstract class AbstractTestCase extends AbstractPackageTestCase
  11. {
  12. /**
  13. * Get the service provider class.
  14. *
  15. * @param \Illuminate\Contracts\Foundation\Application $app
  16. *
  17. * @return string
  18. */
  19. protected function getServiceProviderClass($app)
  20. {
  21. return SearchyServiceProvider::class;
  22. }
  23. }