黑馬筆記2 junit測試框架配置

2021-06-27 02:04:13 字數 741 閱讀 5428

根據測試的粒度可分為:方法測試、單元測試、整合測試。

根據測試的次數,android提供了monkey測試。

學習下單元測試:通過junit。

比如為了測試乙個方法:

public int add(int x, int y)

一、寫測試類和測試方法       繼承androidtestcase,並寫出測試方法

public class testcalcservice extends androidtestcase

}二、配置環境       在mainfest.xml中配置。

1、指令集需要在mainfest的節點下

三、結果演示       在outline中選擇要測試的方法,右鍵選擇run as->android junit test,會在console中列印執行的資訊,在junit中顯示執行的結果。

正確時顯示藍條:

錯誤時顯示紅條及錯誤原因:

四、配置檔案從哪來 開啟adt,new->project->android->android test project,然後給測試工程起個名字,下一步之後要選擇要測試的工程,我們選擇junit,然後建立完後,即可從此專案中拷貝mainfest配置。

Junit2 單個測試

測試單個物件,可以直接執行此類執行main方法,也可以run as junit test。junit執行時,輸出如下 start suite setup testmethoda start testmethoda end teardown setup testmethodb start teardo...

黑馬Python筆記2

從鍵盤輸入變數 input函式 字串變數 input 提示資訊 字串 型別轉換函式int x eg int 123 字串 123 整 除錯時若輸入不了,可嘗試在 後輸入 換行 不能正常編輯 tools vim emulator取消勾即可 函式可以巢狀 格式化操作符,與c類似,不同的是,換成 eg m...

JUnit白盒測試 第2天

1 在junit 中有個asserttrue 的方法,乙個是裡面有 string 引數的asserttrue string msg,boolean b 乙個是沒有引數的 asserttrue boolean 那麼他們兩個之間到底有什麼區別,其實只是乙個有字串的提示功能,也就是說假如測試出錯了,那麼將...