Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 27, 2019 03:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save IntegerMan/43a89163518c30b73ba2e9649e21e82f to your computer and use it in GitHub Desktop.
class TestCase {
constructor(testCaseName, id) {
this.name = testCaseName;
this.isPassing = true;
this.id = id;
}
public name: string;
public isPassing: boolean;
public id: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment