EchoTest.php 195 B

12345678910111213141516
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. class EchoTest extends TestCase
  5. {
  6. public function testEcho(){
  7. // echo "\nabc3213123\n";
  8. $this->assertEquals(3,3);
  9. }
  10. }