我有以下方法,该方法基于给定的属性从数组中删除重复项:
removeDuplicates(myArr, prop) {
return myArr.filter((object, pos, arr) => {
return arr.map(obj => obj[prop]).indexOf(object[prop]) === pos;
});
}
现在我需要对该方法进行单元测试,但是我不知道怎么做。
describe('remove duplicates', () => {
it('should remove duplicated objects from an array based on a property', () => {
//..
}
});
如何正确测试这样的方法?
答案 0 :(得分:1)
您导入removeDuplicates
函数。
您可以遵循AAA模式(编排声明)。
describe('removeDuplicates', () => {
const fixtureComponent = TestBed.createComponent(YourComponent);
it('should remove objects with same given property', () => {
// Arrange
const persons = [
{ id: 1, name: 'John' },
{ id: 2, name: 'Paul' },
{ id: 3, name: 'Ron' },
{ id: 4, name: 'John' },
{ id: 5, name: 'Louis' },
];
// Act
const distinctPersons = fixtureComponent.removeDuplicates(persons, 'name');
// Assert
expect(distinctPersons).toEqual([
{ id: 1, name: 'John' },
{ id: 2, name: 'Paul' },
{ id: 3, name: 'Ron' },
{ id: 5, name: 'Louis' },
]);
}
});
答案 1 :(得分:1)
如果这是一项服务,请尝试
ViewAll = 1