NUint 測試程式中使用的attribute

2021-04-22 02:45:09 字數 714 閱讀 1145

測試程式中使用的attribute

[testfixture]:test class's attribute. nuint根據這個attribute來判斷這個類是否是用來測試的。

[test]:test method's attribute. nuint根據這個attribute來判斷這個方法是否是用來測試的。

[expectedexception]:test method's attribute. 如果你要測試乙個方法在執行出錯時是否能正確丟擲異常,使用這個attribute

[ignore]:test method's attribute.對測試方法暫時不執行測試。比如想暫時不執行一部分的test case.

[testfixturesetup]和[testfixtureteardown]:test method's attribute.表示這個方法在執行測試開始或結束時要被執行,用途

1. 可以用來建立所有testcase都需要的測試環境(應該是fix data之類固定的東西)

2. 測試結束後的一些提示。

[setup]和[teardown]:test method's attribute.表示這個方法在執行乙個test case前或後要被執行,用來為這個方法初始化和清理測試環境。注意一次測試中這個方法將可能被多次呼叫。

nuint 2.2.9 中文文件 : http://www.mycreativity.net.cn/html/2007-10/15.html

測試中,使用的linux指令

最近,測試了乙個 linux 的sdk 這是我第一次接觸 linux 的測試工作。對於 linux 上學的時候在嵌入式作業系統的課程上,老師曾經講過,到現在,早就不記得老師都講了什麼了,唯一留下的印象,就是這個作業系統,可做嵌入式系統開發,可任意配置,全都是對比 uc os ii 這個嵌入式系統講的...

Shell指令碼中使用test測試命令測試數值

test 101 le 99 101是否小於或等於99 類似的特殊符號還有 eq 判斷是否相等 ge 判斷是否大於或等於 lt 判斷是否小於 ne 判斷是否不等於 可以使用命令 代替test命令來作為邏輯表示式 bin bash echo if 101 smaller than 100 if tes...

傳送郵件 MFC dll 測試中使用

mfc dll 使用mapi int sendemail const char address,const char subject,const char text else send the message freelibrary hmapiinst return iresult 函式呼叫 ext...