MockeryTestCase.php 594 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Mockery (https://docs.mockery.io/)
  4. *
  5. * @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md
  6. * @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License
  7. * @link https://github.com/mockery/mockery for the canonical source repository
  8. */
  9. namespace Mockery\Adapter\Phpunit;
  10. use PHPUnit\Framework\TestCase;
  11. abstract class MockeryTestCase extends TestCase
  12. {
  13. use MockeryPHPUnitIntegration;
  14. use MockeryTestCaseSetUp;
  15. protected function mockeryTestSetUp()
  16. {
  17. }
  18. protected function mockeryTestTearDown()
  19. {
  20. }
  21. }