当前位置:  开发笔记 > 编程语言 > 正文

1x 3x等在角度单元测试中的业力代码覆盖率报告中意味着什么?

如何解决《1x3x等在角度单元测试中的业力代码覆盖率报告中意味着什么?》经验,为你挑选了1个好方法。

我是Angular的单元测试的新手.我得到了karma代码覆盖率的设置angular-cli.我运行了命令ng-test并打开了代码覆盖率报告.我看到了1x,3x等一起在覆盖报告我的代码行数.请找到我的报道图像.

在此输入图像描述

这是我的测试用例代码 app.component.spec.ts

/* tslint:disable:no-unused-variable */

import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';

describe('AppComponent', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      declarations: [
        AppComponent
      ],
    });
  });

  it('should create the app', async(() => {
    let fixture = TestBed.createComponent(AppComponent);
    let app = fixture.debugElement.componentInstance;
    expect(app).toBeTruthy();
  }));

  it(`should have as title 'app works!'`, async(() => {
    let fixture = TestBed.createComponent(AppComponent);
    let app = fixture.debugElement.componentInstance;
    expect(app.title).toEqual('app works!');
  }));

  it('should render title in a h1 tag', async(() => {
    let fixture = TestBed.createComponent(AppComponent);
    fixture.detectChanges();
    let compiled = fixture.debugElement.nativeElement;
    expect(compiled.querySelector('h1').textContent).toContain('app works!');
  }));
});

我不明白1x,2x,3x我的代码报告中那个等等的重要性.请帮助我了解其重要性.



1> eko..:

它表示该行已执行的次数.

根据你的代码,让我们来看看你的title领域:

它首先被执行: expect(app).toBeTruthy();

第二: expect(app.title).toEqual('app works!');

第三: expect(compiled.querySelector('h1').textContent).toContain('app works!');

所以这就是为什么它在左边说3x.

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有