gauge-ts
Version:
Typescript runner for Gauge
29 lines (28 loc) • 622 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Specification = void 0;
class Specification {
_name;
_fileName;
_isFailing;
_tags;
constructor(name, fileName, isFailing, tags) {
this._name = name;
this._fileName = fileName;
this._isFailing = isFailing;
this._tags = tags;
}
getName() {
return this._name;
}
getFileName() {
return this._fileName;
}
getIsFailing() {
return this._isFailing;
}
getTags() {
return this._tags;
}
}
exports.Specification = Specification;