junit的測試時,如果乙個類中有多個jt那麼,jt的執行順序是隨機的,這存在隱患,例如增查刪三個方法的正確順序是
增--》查--》刪,這個時候可以在類上面新增@fixmethodorder
(methodsorters.name_ascending
)//表明按照方法的名字來
publicclass
productcategorydaotestextends
basetest
// b
@test
publicvoid
test
ainsert
() //a
@test
publicvoid
testcdelete()
//c }
firebug 中的乙個小細節
我們用firebug除錯js程式時,dir出來的函式體會出現幾種顏色 1 black 代表函式變數 包括var定義的字串變數,this.定義的變數內部變數,等等非函式變數 2 green 代表函式 prototype中的函式,靜態函式,所有函式 3 red prototype 被修改時出現,一般情況...
關於 auto 使用的乙個小細節
class a a const a other m a other.m a int get a a get class void solve output a a const a 0 從output可以看出,auto 自動推導了 a t a.get class 故呼叫了class a的拷貝建構函式 ...
乙個簡單的Junit測試
1 建立乙個類 package com.some.ac01 public class ac01domain public string getaac001 public string getaac002 public string getaac003 public string getaac004 ...