PHPUnit5.0中文手册B. 标注@before
上一篇:@backupStaticAt... 下一篇:@beforeClass

@before

@before 标注用于指明此方法应当在测试用例类中的每个测试方法开始运行之前调用。

class MyTest extends PHPUnit_Framework_TestCase
{
    /**
     * @before
     */
    public function setupSomeFixtures()
    {
        // ...
    }
    /**
     * @before
     */
    public function setupSomeOtherFixtures()
    {
        // ...
    }
}
上一篇:@backupStaticAt... 下一篇:@beforeClass