我正在进行angular2单元测试。该组件具有输入绑定。 我尝试手动设置如下:
fixture = TestBed.createComponent(Step2Component);
component = fixture.componentInstance;
component.notificationModel = new NotificationModel([], 'test');
fixture.detectChanges();
但它失败了。在第一行,调用组件的ngOnInit,并使用notficationModel。在那一点上,没有设置该变量。 设置绑定变量的正确方法是什么?
感谢。