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.

19 lines
296 B

2 years ago
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: x
  5. * Date: 2018/12/9
  6. * Time: 11:43 PM
  7. */
  8. namespace Tests;
  9. use PHPUnit\Framework\TestCase;
  10. class TestCaseBase extends TestCase
  11. {
  12. public function getSnippet($name)
  13. {
  14. return file_get_contents(__DIR__.'/assets/'.$name.'.html');
  15. }
  16. }