我有兩個類:嘲笑值不退還
public class Foo {
public int getInt(){
return 10;
}
}
public class Bar {
Foo testClass = new Foo();
public Foo getTestClass() {
return testClass;
}
public void setTestClass(Foo testClass) {
this.testClass = testClass;
}
public int get(){
return testClass.getInt();
}
}
最後,我有測試類模擬爲富:
你能告訴我,爲什麼我從得到10 t.get()雖然在模擬「我說」,我想要5?
我該如何寫Mock來獲得嘲諷價值?
在此先感謝。
看來你的模擬沒有設置。 – Mistalis