本文整理汇总了TypeScript中claimant-response/form/models/formaliseRepaymentPlanOption.FormaliseRepaymentPlanOption类的典型用法代码示例。如果您正苦于以下问题:TypeScript FormaliseRepaymentPlanOption类的具体用法?TypeScript FormaliseRepaymentPlanOption怎么用?TypeScript FormaliseRepaymentPlanOption使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了FormaliseRepaymentPlanOption类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('valueOf', () => {
it('should return undefined when undefined given', () => {
const actual: FormaliseRepaymentPlanOption = FormaliseRepaymentPlanOption.valueOf(undefined)
expect(actual).to.be.eq(undefined)
})
it('should return undefined when unknown type given', () => {
const actual: FormaliseRepaymentPlanOption = FormaliseRepaymentPlanOption.valueOf('I do not know this option!')
expect(actual).to.be.eq(undefined)
})
FormaliseRepaymentPlanOption.all().forEach(option => {
it(`should return valid object for ${option.value}`, () => {
const actual: FormaliseRepaymentPlanOption = FormaliseRepaymentPlanOption.valueOf(option.value)
expect(actual).to.be.equal(option)
})
})
})
示例2: it
it('should accept formaliseRepaymentPlan with recognised type', () => {
FormaliseRepaymentPlanOption.all().forEach(option => {
const errors = validator.validateSync(option)
expect(errors.length).to.equal(0)
})
})
示例3: describe
describe('Formalise repayment plan option filter', () => {
FormaliseRepaymentPlanOption.all()
.forEach(type => {
it(`should map '${type.value}' to '${type.displayValue}'`, () => {
expect(FormaliseRepaymentPlanOptionFilter.render(type)).to.equal(type.displayValue)
})
})
it('should throw an error for null', () => {
expect(() => FormaliseRepaymentPlanOptionFilter.render(null)).to.throw(Error)
})
})
示例4: deserialize
deserialize (input?: any): FormaliseRepaymentPlan {
if (input && input.option) {
this.option = FormaliseRepaymentPlanOption.valueOf(input.option.value)
}
return this
}
示例5: fromObject
static fromObject (input?: any): FormaliseRepaymentPlan {
if (!input) {
return input
}
return new FormaliseRepaymentPlan(FormaliseRepaymentPlanOption.valueOf(input.option))
}
示例6: it
it('should be completed when option is selected', () => {
FormaliseRepaymentPlanOption.all().forEach(option => {
expect(ChooseHowToProceedTask.isCompleted(new FormaliseRepaymentPlan(option))).to.be.true
})
})
示例7: it
it('should return an array', () => {
const actual: FormaliseRepaymentPlanOption[] = FormaliseRepaymentPlanOption.all()
expect(actual).instanceof(Array)
expect(actual.length).to.eq(3)
})