當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript localDateUtils.localDateFrom函數代碼示例

本文整理匯總了TypeScript中test/localDateUtils.localDateFrom函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript localDateFrom函數的具體用法?TypeScript localDateFrom怎麽用?TypeScript localDateFrom使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了localDateFrom函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

      it(`${option.value}`, () => {
        const draft: ResponseDraft = validResponseDraft(option)
        draft.partialAdmission.paymentIntention.paymentOption = new PaymentOption(option)
        draft.partialAdmission.paymentIntention.paymentDate =
          new PaymentDate(localDateFrom(MomentFactory.currentDate()))

        expect(WhenWillYouPayTask.isCompleted(draft)).to.be.true
      })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:8,代碼來源:whenWillYouPayTask.ts

示例2: it

          it('when payment plan is valid', () => {
            const draft: ResponseDraft = new ResponseDraft()
            draft[admission.type] = new admission.clazz()
            draft[admission.type].paymentPlan = new PaymentPlan(
              1000,
              100,
              localDateFrom(MomentFactory.currentDate().add(1, 'day')),
              PaymentSchedule.EACH_WEEK
            )

            expect(YourRepaymentPlanTask.isCompleted(draft[admission.type].paymentPlan)).to.be.true
          })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:12,代碼來源:yourRepaymentPlanTask.ts

示例3: validResponseDraftWith

function validResponseDraftWith (paymentType: PaymentType): ResponseDraft {
  const responseDraft: ResponseDraft = new ResponseDraft()
  responseDraft.response = new Response(ResponseType.FULL_ADMISSION)
  responseDraft.fullAdmission = new FullAdmission()
  responseDraft.fullAdmission.paymentIntention = new PaymentIntention()
  responseDraft.fullAdmission.paymentIntention.paymentOption = new PaymentOption(paymentType)
  switch (paymentType) {
    case PaymentType.BY_SET_DATE:
      responseDraft.fullAdmission.paymentIntention.paymentDate = new PaymentDate(localDateFrom(MomentFactory.currentDate()))
      break
  }
  responseDraft.defendantDetails = new Defendant(new IndividualDetails())
  return responseDraft
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:14,代碼來源:decideHowYouWillPayTask.ts

示例4: it

 it('should not be completed when payment date is not valid - date in the past', () => {
   responseDraft.fullAdmission.paymentIntention.paymentDate.date = localDateFrom(MomentFactory.currentDate().add(-10, 'day'))
   expect(DecideHowYouWillPayTask.isCompleted(responseDraft)).to.be.false
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:4,代碼來源:decideHowYouWillPayTask.ts

示例5: validResponseDraftWith

function validResponseDraftWith (paymentType: PaymentType): ResponseDraft {
  const responseDraft: ResponseDraft = new ResponseDraft()
  responseDraft.response = new Response(ResponseType.FULL_ADMISSION)
  responseDraft.fullAdmission = new FullAdmission()
  responseDraft.fullAdmission.paymentIntention = new PaymentIntention()
  responseDraft.fullAdmission.paymentIntention.paymentOption = new PaymentOption(paymentType)
  switch (paymentType) {
    case PaymentType.BY_SET_DATE:
      responseDraft.fullAdmission.paymentIntention.paymentDate = new PaymentDate(localDateFrom(MomentFactory.currentDate()))
      break
    case PaymentType.INSTALMENTS:
      responseDraft.fullAdmission.paymentIntention.paymentPlan = new PaymentPlan(
        1000,
        100,
        localDateFrom(MomentFactory.currentDate().add(1, 'day')),
        PaymentSchedule.EACH_WEEK
      )
      break
  }
  responseDraft.response = new Response(ResponseType.FULL_ADMISSION)
  responseDraft.defendantDetails = new Defendant(new IndividualDetails())
  responseDraft.statementOfMeans = new StatementOfMeans()
  // this is the simplest valid structure
  responseDraft.statementOfMeans.residence = new Residence(ResidenceType.OWN_HOME, 'description')
  responseDraft.statementOfMeans.disability = new Disability(DisabilityOption.NO)
  responseDraft.statementOfMeans.cohabiting = new Cohabiting(CohabitingOption.NO)
  responseDraft.statementOfMeans.dependants = new Dependants(false)
  responseDraft.statementOfMeans.otherDependants = new OtherDependants(false)
  responseDraft.statementOfMeans.employment = new Employment(false)
  responseDraft.statementOfMeans.unemployment = new Unemployment(UnemploymentType.RETIRED)
  responseDraft.statementOfMeans.bankAccounts = new BankAccounts([new BankAccountRow(BankAccountType.CURRENT_ACCOUNT, false, 100)])
  responseDraft.statementOfMeans.debts = new Debts(false)
  responseDraft.statementOfMeans.monthlyIncome = new MonthlyIncome(
    true, new IncomeSource(MonthlyIncomeType.JOB.displayValue, 100, IncomeExpenseSchedule.MONTH),
    undefined, new IncomeSource(MonthlyIncomeType.UNIVERSAL_CREDIT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.JOB_SEEKERS_ALLOWANCE_INCOME_BASES.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.JOB_SEEKERS_ALLOWANCE_CONTRIBUTION_BASED.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.INCOME_SUPPORT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.WORKING_TAX_CREDIT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.CHILD_TAX_CREDIT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.CHILD_BENEFIT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.COUNCIL_TAX_SUPPORT.displayValue, undefined, undefined),
    undefined, new IncomeSource(MonthlyIncomeType.PENSION.displayValue, undefined, undefined)
  )

  responseDraft.statementOfMeans.monthlyExpenses = new MonthlyExpenses(
    true, new ExpenseSource(MonthlyExpenseType.MORTGAGE.displayValue, 100, IncomeExpenseSchedule.MONTH),
    undefined, new ExpenseSource(MonthlyExpenseType.RENT.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.COUNCIL_TAX.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.GAS.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.ELECTRICITY.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.WATER.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.TRAVEL.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.SCHOOL_COSTS.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.FOOD_HOUSEKEEPING.displayValue, undefined, undefined),
    undefined, new ExpenseSource(MonthlyExpenseType.TV_AND_BROADBAND.displayValue, undefined, undefined)
  )

  responseDraft.statementOfMeans.courtOrders = new CourtOrders(false)
  responseDraft.statementOfMeans.explanation = new Explanation('Some explanation')

  return responseDraft
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:63,代碼來源:statementOfMeansTask.ts


注:本文中的test/localDateUtils.localDateFrom函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。