12
Jasmine ile özel yöntemler için Angular / TypeScript için birim testi yazma
Açısal 2'de özel bir işlevi nasıl test edersiniz? class FooBar { private _status: number; constructor( private foo : Bar ) { this.initFooBar(); } private initFooBar(){ this.foo.bar( "data" ); this._status = this.fooo.foo(); } public get status(){ return this._status; } } Bulduğum çözüm Test kodunun kendisini kapağın içine yerleştirin veya dış değişkente …