您好我正在为我的角度代码编写单元测试用例。我想在gridview中更新文本框。下面是我的gridview代码。
<input *ngIf="editing[rowIndex + '-scopevalue']" class="inline-editor" autofocus (blur)="updateValue($event, 'scopevalue', value, rowIndex)" type="text" [value]="value" />
以下功能执行更新。
updateValue(event, cell, cellValue, rowIndex) {
this.editing[rowIndex + '-' + cell] = false;
this.rows[rowIndex][cell] = event.target.value;
this.rowsCache[rowIndex][cell] = event.target.value;
this.scopeEdit = this.rows[rowIndex];
this.updateScope();
}
在单元测试用例下面,我正在编写以检查上面的代码。
it('update scope name value', () => {
var row = component.rows[0];
let cell = 'scopevalue';
let cellValue = row.scopevalue;
let rowIndex = 0;
component.updateValue('/bmw', cell, cellValue, rowIndex);
});
在上面的方法中,第一个参数应该是事件。有人可以帮助我如何创建活动吗?任何帮助,将不胜感激。谢谢
答案 0 :(得分:2)
您可以设置event.target.value
的硬编码值,并在updateValue
函数中验证rowsCache[rowIndex][cell]
是否具有该值。
您可以使用简单对象模拟事件,如下所示:
const event = { target: { value: 42 }};
component.updateValue(event, cell, cellValue, rowIndex);