class Child extends React.Component {
constructor(props) {
super(props);
this.state = {
index: props.index
}
}
...
render() {
const { index } = this.state;
...
}
}
在我的项目中,我必须对多列实施排序,因此我想在angular 4版本中为上述排序自定义管道编写单元测试用例?
答案 0 :(得分:0)
我只是在我的描述中创建管道的对象
const pipe = new OrderByPipe()
然后,执行常见的测试用例,例如:expect(pipe.transform([5,1,6,7]).toEqual([1,5,6,7])
,测试极端情况等。