examplejs icon indicating copy to clipboard operation
examplejs copied to clipboard

phpunit

Open zswang opened this issue 9 years ago • 0 comments

/**
 *
 * @example test1
   ```php
   <?php
   $a = 1;
   echo "hello $1";
   // > hello 1
   ```
 */
<?php
class Test1 extends PHPUnit_Framework_TestCase
{
    // ...

    /**
     * @test test1
     */
    public function test1()
    {
        $a = 1;
        $this->assertEquals("hello $1", 'hello 1');
    }

    // ...
}

zswang avatar Aug 30 '16 07:08 zswang