0
我有一個私有方法,其中我調用一個在服務中定義的方法來獲取某些數據。這項服務是一類使用服務注入的angular2中的私有方法的單元測試
在Angular2
private _data: DataService;
private _result: any;
private _getData() {
this._data.fetchingDetails('userID', (res) => {
this._result = res;
});
}
我會如何,如果你想要做一些黑客繞過事實檢驗這段代碼在茉莉花
可能的重複[如何編寫單元測試的Angular 2/TypeScript的私人方法與茉莉花](https://stackoverflow.com/questions/35987055/how-to-write-unit-testing-for-angular- 2打字稿換私有的方法 - 用-JA) – Makoto