BaseTest.php 237 B

1234567891011121314151617
  1. <?php
  2. use Tests\TestCase;
  3. class BaseTest extends TestCase
  4. {
  5. const CONSTANT = "Hello world.";
  6. /**
  7. * @test
  8. */
  9. public function test_001()
  10. {
  11. dump(self::CONSTANT);
  12. $this->assertTrue(true);
  13. }
  14. }