国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

PHPUnit9.0 標(biāo)注-@afterClass

2022-03-24 10:57 更新
PHPUnit9.0 標(biāo)注集合PHPUnit9.0 標(biāo)注集合

?@afterClass? 標(biāo)注用于指明此靜態(tài)方法應(yīng)該于測(cè)試類中的所有測(cè)試方法都運(yùn)行完成之后調(diào)用,用于清理共享基境(?fixture?)。

<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;

final class MyTest extends TestCase
{
    /**
     * @afterClass
     */
    public static function tearDownSomeSharedFixtures(): void
    {
        // ...
    }

    /**
     * @afterClass
     */
    public static function tearDownSomeOtherSharedFixtures(): void
    {
        // ...
    }
}


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)