jec-cli
Version:
CLI tool for managing JEC projects.
15 lines (14 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class TestSuiteDto {
constructor() {
this.name = null;
this.className = null;
this.classPath = null;
this.testPath = null;
this.relativeClassPath = null;
this.methods = null;
}
}
exports.TestSuiteDto = TestSuiteDto;
;