12
जैस्मीन के साथ निजी तरीकों के लिए कोणीय / टाइपस्क्रिप्ट के लिए इकाई परीक्षण कैसे लिखें
आप कोणीय 2 में एक निजी फ़ंक्शन का परीक्षण कैसे करते हैं? 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; } } इसका हल मुझे मिल गया बाहरी के …