App下載

詞條

大約有 7,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0048秒)

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

PHPUnit9.0 標(biāo)注集合 PHPUnit 支持對(duì)測(cè)試方法之間的顯式依賴關(guān)系進(jìn)行聲明。這種依賴關(guān)系并不是定義在測(cè)試方法的執(zhí)行順序中,而是允許生產(chǎn)者(?producer?)返回一個(gè)測(cè)試基境(?fixture?)的實(shí)例,并將此實(shí)例傳遞給依賴于它的...

http://www.o2fo.com/phpunit9/phpunit9-j36t3mh8.html

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

PHPUnit9.0 標(biāo)注集合 測(cè)試可以用 ?@group? 標(biāo)注來標(biāo)記為屬于一個(gè)或多個(gè)組,就像這樣:<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; final class MyTest extends TestCase { /** * @group specification */ public function testSomething(): void { } /** * @gro...

http://www.o2fo.com/phpunit9/phpunit9-vg5i3mha.html

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

PHPUnit9.0 標(biāo)注集合 ?@large? 標(biāo)注是 ?@group large? 的別名。 如果安裝了 ?PHP_Invoker? 組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過60秒的大型(large)測(cè)試將視為失敗。這個(gè)超時(shí)限制可以通過 XML 配置文件的 ?timeoutForLargeTests?...

http://www.o2fo.com/phpunit9/phpunit9-prx33mhb.html

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

PHPUnit9.0 標(biāo)注集合 ?@medium? 標(biāo)注是 ?@group medium? 的別名。中型(medium)測(cè)試不能依賴于標(biāo)記為 ?@large? 的測(cè)試。 如果安裝了 ?PHP_Invoker組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過10秒的中型(medium)測(cè)試將視為失敗。這...

http://www.o2fo.com/phpunit9/phpunit9-6kax3mhc.html

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

PHPUnit9.0 標(biāo)注集合 在單獨(dú)的進(jìn)程中運(yùn)行測(cè)試時(shí),PHPUnit 會(huì)嘗試保持來自父進(jìn)程的全局狀態(tài)(通過在父進(jìn)程序列化全局狀態(tài)然后在子進(jìn)程反序列化的方式)。這當(dāng)父進(jìn)程包含非可序列化的全局內(nèi)容時(shí)可能會(huì)導(dǎo)致問題。為了修正這種...

http://www.o2fo.com/phpunit9/phpunit9-9v3b3mhd.html

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

PHPUnit9.0 標(biāo)注集合 ?@small? 標(biāo)注是 ?@group small? 的別名。小型(small)測(cè)試不能依賴于標(biāo)記為 ?@medium? 或 ?@large? 的測(cè)試。 如果安裝了 ?PHP_Invoker? 組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過 1 秒的小型(small)測(cè)試將...

http://www.o2fo.com/phpunit9/phpunit9-omxu3mhi.html

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

PHPUnit9.0 標(biāo)注集合 指定生成敏捷文檔句子時(shí)使用的替換描述。 測(cè)試類和測(cè)試方法都可以應(yīng)用 ?@testdox? 標(biāo)注。<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; /** * @testdox A bank account */ final class BankAccountTest extends TestCase { /** * @...

http://www.o2fo.com/phpunit9/phpunit9-3wqr3mhk.html

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

PHPUnit9.0 標(biāo)注集合 ?@uses? 標(biāo)注用來指明那些將會(huì)在測(cè)試中執(zhí)行到但同時(shí)又不打算讓其被測(cè)試所覆蓋的代碼。在對(duì)代碼單元進(jìn)行測(cè)試時(shí)所必須的值對(duì)象就是個(gè)很好的例子。/** * @covers \BankAccount * @uses \Money */ public function testMoneyCa...

http://www.o2fo.com/phpunit9/phpunit9-vjsa3mhp.html

5569.PHPUnit <phpunit> 元素-processIsolation 屬性

PHPUnit9.0 XML 配置文件 可能值:?true ?或 ?false?(默認(rèn)值:?false?) 此屬性配置是否應(yīng)當(dāng)對(duì)每個(gè)測(cè)試都用單獨(dú)的 PHP 進(jìn)程來運(yùn)行以提高隔離度。

http://www.o2fo.com/phpunit9/phpunit9-ur1q3mii.html

5570.PHPUnit <phpunit> 元素-beStrictAboutResourceUsageDuringSmallTests 屬性

PHPUnit9.0 XML 配置文件 可能值:?true ?或 ?false?(默認(rèn)值:?false?) 此屬性配置的是當(dāng)標(biāo)注為 @small 的測(cè)試調(diào)用對(duì) resource 變量進(jìn)行操作的 PHP 內(nèi)建函數(shù)或方法時(shí),PHPUnit 是否應(yīng)將其標(biāo)記為有風(fēng)險(xiǎn)(risky)。

http://www.o2fo.com/phpunit9/phpunit9-29he3miu.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

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

PHPUnit9.0 標(biāo)注集合 PHPUnit 支持對(duì)測(cè)試方法之間的顯式依賴關(guān)系進(jìn)行聲明。這種依賴關(guān)系并不是定義在測(cè)試方法的執(zhí)行順序中,而是允許生產(chǎn)者(?producer?)返回一個(gè)測(cè)試基境(?fixture?)的實(shí)例,并將此實(shí)例傳遞給依賴于它的...

http://www.o2fo.com/phpunit9/phpunit9-j36t3mh8.html

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

PHPUnit9.0 標(biāo)注集合 測(cè)試可以用 ?@group? 標(biāo)注來標(biāo)記為屬于一個(gè)或多個(gè)組,就像這樣:<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; final class MyTest extends TestCase { /** * @group specification */ public function testSomething(): void { } /** * @gro...

http://www.o2fo.com/phpunit9/phpunit9-vg5i3mha.html

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

PHPUnit9.0 標(biāo)注集合 ?@large? 標(biāo)注是 ?@group large? 的別名。 如果安裝了 ?PHP_Invoker? 組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過60秒的大型(large)測(cè)試將視為失敗。這個(gè)超時(shí)限制可以通過 XML 配置文件的 ?timeoutForLargeTests?...

http://www.o2fo.com/phpunit9/phpunit9-prx33mhb.html

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

PHPUnit9.0 標(biāo)注集合 ?@medium? 標(biāo)注是 ?@group medium? 的別名。中型(medium)測(cè)試不能依賴于標(biāo)記為 ?@large? 的測(cè)試。 如果安裝了 ?PHP_Invoker組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過10秒的中型(medium)測(cè)試將視為失敗。這...

http://www.o2fo.com/phpunit9/phpunit9-6kax3mhc.html

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

PHPUnit9.0 標(biāo)注集合 在單獨(dú)的進(jìn)程中運(yùn)行測(cè)試時(shí),PHPUnit 會(huì)嘗試保持來自父進(jìn)程的全局狀態(tài)(通過在父進(jìn)程序列化全局狀態(tài)然后在子進(jìn)程反序列化的方式)。這當(dāng)父進(jìn)程包含非可序列化的全局內(nèi)容時(shí)可能會(huì)導(dǎo)致問題。為了修正這種...

http://www.o2fo.com/phpunit9/phpunit9-9v3b3mhd.html

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

PHPUnit9.0 標(biāo)注集合 ?@small? 標(biāo)注是 ?@group small? 的別名。小型(small)測(cè)試不能依賴于標(biāo)記為 ?@medium? 或 ?@large? 的測(cè)試。 如果安裝了 ?PHP_Invoker? 組件包并啟用了嚴(yán)格模式,一個(gè)執(zhí)行時(shí)間超過 1 秒的小型(small)測(cè)試將...

http://www.o2fo.com/phpunit9/phpunit9-omxu3mhi.html

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

PHPUnit9.0 標(biāo)注集合 指定生成敏捷文檔句子時(shí)使用的替換描述。 測(cè)試類和測(cè)試方法都可以應(yīng)用 ?@testdox? 標(biāo)注。<?php declare(strict_types=1); use PHPUnit\Framework\TestCase; /** * @testdox A bank account */ final class BankAccountTest extends TestCase { /** * @...

http://www.o2fo.com/phpunit9/phpunit9-3wqr3mhk.html

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

PHPUnit9.0 標(biāo)注集合 ?@uses? 標(biāo)注用來指明那些將會(huì)在測(cè)試中執(zhí)行到但同時(shí)又不打算讓其被測(cè)試所覆蓋的代碼。在對(duì)代碼單元進(jìn)行測(cè)試時(shí)所必須的值對(duì)象就是個(gè)很好的例子。/** * @covers \BankAccount * @uses \Money */ public function testMoneyCa...

http://www.o2fo.com/phpunit9/phpunit9-vjsa3mhp.html

5569.PHPUnit <phpunit> 元素-processIsolation 屬性

PHPUnit9.0 XML 配置文件 可能值:?true ?或 ?false?(默認(rèn)值:?false?) 此屬性配置是否應(yīng)當(dāng)對(duì)每個(gè)測(cè)試都用單獨(dú)的 PHP 進(jìn)程來運(yùn)行以提高隔離度。

http://www.o2fo.com/phpunit9/phpunit9-ur1q3mii.html

5570.PHPUnit <phpunit> 元素-beStrictAboutResourceUsageDuringSmallTests 屬性

PHPUnit9.0 XML 配置文件 可能值:?true ?或 ?false?(默認(rèn)值:?false?) 此屬性配置的是當(dāng)標(biāo)注為 @small 的測(cè)試調(diào)用對(duì) resource 變量進(jìn)行操作的 PHP 內(nèi)建函數(shù)或方法時(shí),PHPUnit 是否應(yīng)將其標(biāo)記為有風(fēng)險(xiǎn)(risky)。

http://www.o2fo.com/phpunit9/phpunit9-29he3miu.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程