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


TypeScript view_resolver.ViewResolver类代码示例

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


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

示例1: describe

  describe('ViewResolver', () => {
    var resolver: ViewResolver;

    beforeEach(() => { resolver = new ViewResolver(); });

    it('should read out the View metadata from the Component metadata', () => {
      var viewMetadata = resolver.resolve(ComponentWithTemplate);
      expect(viewMetadata).toEqual(new ViewMetadata({
        template: 'some template',
        directives: [SomeDir],
        pipes: [SomePipe],
        styles: ['some styles']
      }));
    });

    it('should throw when Component has no View decorator and no template is set', () => {
      expect(() => resolver.resolve(ComponentWithoutView))
          .toThrowErrorWith(
              'Component \'ComponentWithoutView\' must have either \'template\' or \'templateUrl\' set');
    });

    it('should throw when simple class has no View decorator and no template is set', () => {
      expect(() => resolver.resolve(SimpleClass))
          .toThrowErrorWith('Could not compile \'SimpleClass\' because it is not a component.');
    });
  });
开发者ID:LordBinary,项目名称:angular,代码行数:26,代码来源:view_resolver_spec.ts

示例2: describe

  describe("ViewResolver", () => {
    var resolver: ViewResolver;

    beforeEach(() => { resolver = new ViewResolver(); });

    it('should read out the View metadata', () => {
      var viewMetadata = resolver.resolve(ComponentWithView);
      expect(viewMetadata)
          .toEqual(new View({
            template: "some template",
            directives: [SomeDir],
            pipes: [SomePipe],
            styles: ["some styles"]
          }));
    });

    it('should read out the View metadata from the Component metadata', () => {
      var viewMetadata = resolver.resolve(ComponentWithTemplate);
      expect(viewMetadata)
          .toEqual(new ViewMetadata({
            template: "some template",
            directives: [SomeDir],
            pipes: [SomePipe],
            styles: ["some styles"]
          }));
    });

    it('should read out the View metadata from a simple class', () => {
      var viewMetadata = resolver.resolve(ClassWithView);
      expect(viewMetadata).toEqual(new View({template: "some template"}));
    });

    it('should throw when Component.template is specified together with the View metadata', () => {
      expect(() => resolver.resolve(ComponentWithViewTemplate))
          .toThrowErrorWith(
              "Component 'ComponentWithViewTemplate' cannot have both 'template' and '@View' set at the same time");
    });

    it('should throw when Component.template is specified together with the View metadata', () => {
      expect(() => resolver.resolve(ComponentWithViewTemplateUrl))
          .toThrowErrorWith(
              "Component 'ComponentWithViewTemplateUrl' cannot have both 'templateUrl' and '@View' set at the same time");
    });

    it('should throw when Component has no View decorator and no template is set', () => {
      expect(() => resolver.resolve(ComponentWithoutView))
          .toThrowErrorWith(
              "Component 'ComponentWithoutView' must have either 'template', 'templateUrl', or '@View' set");
    });

    it('should throw when simple class has no View decorator and no template is set', () => {
      expect(() => resolver.resolve(SimpleClass))
          .toThrowErrorWith("No View decorator found on component 'SimpleClass'");
    });
  });
开发者ID:ASLA1899,项目名称:angular,代码行数:55,代码来源:view_resolver_spec.ts

示例3: it

 it('should read out the View metadata from the Component metadata', () => {
   var viewMetadata = resolver.resolve(ComponentWithTemplate);
   expect(viewMetadata).toEqual(new ViewMetadata({
     template: 'some template',
     directives: [SomeDir],
     pipes: [SomePipe],
     styles: ['some styles']
   }));
 });
开发者ID:LordBinary,项目名称:angular,代码行数:9,代码来源:view_resolver_spec.ts

示例4: it

 it('should read out the View metadata', () => {
   var viewMetadata = resolver.resolve(ComponentWithView);
   expect(viewMetadata)
       .toEqual(new View({
         template: "some template",
         directives: [SomeDir],
         pipes: [SomePipe],
         styles: ["some styles"]
       }));
 });
开发者ID:ASLA1899,项目名称:angular,代码行数:10,代码来源:view_resolver_spec.ts

示例5: expect

 expect(() => resolver.resolve(SimpleClass))
开发者ID:ASLA1899,项目名称:angular,代码行数:1,代码来源:view_resolver_spec.ts


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