Skip to content

Commit 6f00275

Browse files
author
Arthur Ozga
committed
Merge pull request microsoft#3965 from Microsoft/abstractRunnerBase
make RunnerBase abstract
2 parents 4e85864 + 831bc38 commit 6f00275

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/harness/runnerbase.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference path="harness.ts" />
22

3-
class RunnerBase {
3+
abstract class RunnerBase {
44
constructor() { }
55

66
// contains the tests to run
@@ -18,9 +18,7 @@ class RunnerBase {
1818
/** Setup the runner's tests so that they are ready to be executed by the harness
1919
* The first test should be a describe/it block that sets up the harness's compiler instance appropriately
2020
*/
21-
public initializeTests(): void {
22-
throw new Error('method not implemented');
23-
}
21+
public abstract initializeTests(): void;
2422

2523
/** Replaces instances of full paths with fileNames only */
2624
static removeFullPaths(path: string) {

0 commit comments

Comments
 (0)