当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript alsatian.TestCase函数代码示例

本文整理汇总了TypeScript中alsatian.TestCase函数的典型用法代码示例。如果您正苦于以下问题:TypeScript TestCase函数的具体用法?TypeScript TestCase怎么用?TypeScript TestCase使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了TestCase函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: propsChildrenBecomesStateCode

    @TestCase("some code")
    @TestCase("much more fancy logic")
    @Test("children prop is set to code state")
    public propsChildrenBecomesStateCode(expectedCode: string) {
        const codeBlock = new CodeBlock({ children: expectedCode });

        Expect(codeBlock.state.code).toBe(expectedCode);
    }
开发者ID:alsatian-test,项目名称:alsatian-website,代码行数:8,代码来源:code-block.component.spec.ts

示例2: getWorksByPublicKeyShouldSucceed

  @AsyncTest()
  @TestCase(TheRaven.publicKey)
  @TestCase(TheMurdersInTheRueMorgue.publicKey)
  @TestCase(AStudyInScarlet.publicKey)
  async getWorksByPublicKeyShouldSucceed(publicKey: string) {
    const response = await this.client.getWorksByPublicKey(publicKey)

    Expect(response.status).toBe(200)
    Expect(response.ok).toBeTruthy()
  }
开发者ID:GuilhermeCaruso,项目名称:node,代码行数:10,代码来源:GetWorksByPublicKey.ts

示例3: serializesNameFromModelToDto

    @TestCase('Pot Noodle')
    @TestCase('Chilli Noodle')
    @TestCase('JavaScript Noodles')
    public serializesNameFromModelToDto(brandName: string) {
        let model = new EntityBuilders.ModelBuilders.BrandModelBuilder().withName(brandName).build();
        let serializer = new BrandSerializer();

        let dto = serializer.serialize(model);

        Expect(dto.name).toBe(brandName);
    }
开发者ID:noodlecrate,项目名称:poseidon-test,代码行数:11,代码来源:serialize.spec.ts

示例4: serializesIdFromModelToDto

    @TestCase(1)
    @TestCase(17)
    @TestCase(204)
    public serializesIdFromModelToDto(id: number) {
        let model = new EntityBuilders.ModelBuilders.BrandModelBuilder().withId(id).build();
        let serializer = new BrandSerializer();

        let dto = serializer.serialize(model);

        Expect(dto.id).toBe(id);
    }
开发者ID:noodlecrate,项目名称:poseidon-test,代码行数:11,代码来源:serialize.spec.ts

示例5: lanuageClassSetupOnCode

    @TestCase("typescript")
    @TestCase("javascript")
    @Test("language class setup on code element")
    public lanuageClassSetupOnCode(languageName: string) {
        const codeBlock = new CodeBlock({ 
            children: "",
            language: languageName
        });

        Expect(codeBlock.render().props.children.props.className).toBe("language-" + languageName);
    }
开发者ID:alsatian-test,项目名称:alsatian-website,代码行数:11,代码来源:code-block.component.spec.ts

示例6: getHeader

 @AsyncTest()
 @TestCase('content-security-policy', `script-src 'self'`)
 @TestCase('x-frame-options', 'DENY')
 @TestCase('x-xss-protection', '1; mode=block')
 @TestCase('x-content-type-options', 'nosniff')
 @TestCase('referrer-policy', 'same-origin')
 async getHeader(value: string, expected: string) {
   const result = await fetch(this.client.url)
   const header = result.headers.get(value)
   Expect(header).toBe(expected)
 }
开发者ID:GuilhermeCaruso,项目名称:node,代码行数:11,代码来源:SecurityHeaders.ts

示例7: getWorksByPublicKeyShouldReturnClaimsMatchingPublicKey

  @AsyncTest()
  @TestCase(TheRaven.publicKey)
  @TestCase(TheMurdersInTheRueMorgue.publicKey)
  @TestCase(AStudyInScarlet.publicKey)
  async getWorksByPublicKeyShouldReturnClaimsMatchingPublicKey(publicKey: string) {
    const response = await this.client.getWorksByPublicKey(publicKey)

    Expect(response.status).toBe(200)
    Expect(response.ok).toBeTruthy()

    const claims = await response.json()
    const allElementsMatchPublicKey = !claims.find((claim: Claim) => claim.publicKey !== publicKey)

    Expect(allElementsMatchPublicKey).toBeTruthy()
  }
开发者ID:GuilhermeCaruso,项目名称:node,代码行数:15,代码来源:GetWorksByPublicKey.ts

示例8: Expect

  @AsyncTest()
  @TestCase(TheRaven)
  @TestCase(TheMurdersInTheRueMorgue)
  @TestCase(AStudyInScarlet)
  async getWork200(claim: Claim) {
    const response = await this.client.getWork(claim.id)

    Expect(response.status).toBe(200)
    Expect(response.ok).toBeTruthy()

    const body = await response.json()

    Expect(body.id).toBe(claim.id)
    Expect(body.attributes.name).toBe(claim.attributes.name)
  }
开发者ID:GuilhermeCaruso,项目名称:node,代码行数:15,代码来源:GetWork.ts

示例9: getWorksByPublicKeyShouldReturnAnArray

  @AsyncTest()
  @TestCase(TheRaven.publicKey)
  @TestCase(TheMurdersInTheRueMorgue.publicKey)
  @TestCase(AStudyInScarlet.publicKey)
  async getWorksByPublicKeyShouldReturnAnArray(publicKey: string) {
    const response = await this.client.getWorksByPublicKey(publicKey)

    Expect(response.status).toBe(200)
    Expect(response.ok).toBeTruthy()

    const claims = await response.json()

    Expect(claims).toBeDefined()
    Expect(Array.isArray(claims)).toBeTruthy()
  }
开发者ID:GuilhermeCaruso,项目名称:node,代码行数:15,代码来源:GetWorksByPublicKey.ts

示例10: claimIdShouldNotChangeWithAttributeKeyCasing

  @Test()
  @TestCase(TheRaven.attributes.name, TheRaven.attributes.author)
  @TestCase(TheMurdersInTheRueMorgue.attributes.name, TheMurdersInTheRueMorgue.attributes.author)
  @TestCase(AStudyInScarlet.attributes.name, AStudyInScarlet.attributes.author)
  public claimIdShouldNotChangeWithAttributeKeyCasing(name: string, author: string) {
    const work1: Claim = makeClaim({
      name,
      author,
    })
    const work2: Claim = makeClaim({
      Author: author,
      NAME: name,
    })

    Expect(getClaimId(work1)).toBe(getClaimId(work2))
  }
开发者ID:aconly,项目名称:poet-js,代码行数:16,代码来源:GetClaimId.ts


注:本文中的alsatian.TestCase函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。