diff options
Diffstat (limited to 'cli/tests/subdir')
-rw-r--r-- | cli/tests/subdir/branch.ts | 7 | ||||
-rw-r--r-- | cli/tests/subdir/complex.ts | 35 |
2 files changed, 0 insertions, 42 deletions
diff --git a/cli/tests/subdir/branch.ts b/cli/tests/subdir/branch.ts deleted file mode 100644 index bb7aec9eb..000000000 --- a/cli/tests/subdir/branch.ts +++ /dev/null @@ -1,7 +0,0 @@ -export function branch(condition: boolean): boolean { - if (condition) { - return true; - } else { - return false; - } -} diff --git a/cli/tests/subdir/complex.ts b/cli/tests/subdir/complex.ts deleted file mode 100644 index 588e6ce59..000000000 --- a/cli/tests/subdir/complex.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This entire interface should be completely ignored by the coverage tool. -export interface Complex { - // These are comments. - foo: string; - - // But this is a stub, so this isn't really documentation. - bar: string; - - // Really all these are doing is padding the line count. - baz: string; -} - -export function complex( - foo: string, - bar: string, - baz: string, -): Complex { - return { - foo, - bar, - baz, - }; -} - -export function unused( - foo: string, - bar: string, - baz: string, -): Complex { - return complex( - foo, - bar, - baz, - ); -} |