Created
February 11, 2019 14:52
-
-
Save jkyoutsey/92ac3f090e05aa6f45757c813a4a7eda to your computer and use it in GitHub Desktop.
Angular Coverage Metrics Lie Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit } from '@angular/core'; | |
@Component({ | |
selector: 'nea-coverage-metrics-lie', | |
templateUrl: './coverage-metrics-lie.component.html', | |
styleUrls: ['./coverage-metrics-lie.component.scss'] | |
}) | |
export class CoverageMetricsLieComponent implements OnInit { | |
data: number[]; | |
constructor() { } | |
ngOnInit() { | |
this.getSomeData(10, false); // flip to true | |
// TRUE: 87.5% Statements 14/16 87.5% Branches 7/8 71.43% Functions 5/7 92.31% Lines 12/13 | |
// FALSE: 87.5% Statements 14/16 62.5% Branches 5/8 71.43% Functions 5/7 92.31% Lines 12/13 | |
} | |
getSomeData(multiplyBy: number, evenOnly = false) { | |
this.data = []; | |
for (let i = 0; i < 5; i++) { | |
const result = !evenOnly || (i % 2 === 0) ? i * multiplyBy : i; | |
this.data.push(result); | |
} | |
} | |
hasData(): boolean { | |
return this.data && this.data.length > 0; | |
} | |
delete(filter: number) { | |
this.data = this.data.filter(a => a !== filter); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment