arch-unit-ts
Version:
20 lines • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvertingConditionEvents = void 0;
class InvertingConditionEvents {
delegate;
constructor(delegate) {
this.delegate = delegate;
}
add(event) {
this.delegate.add(event.invert());
}
getViolating() {
return this.delegate.getViolating();
}
containViolation() {
return this.delegate.containViolation();
}
}
exports.InvertingConditionEvents = InvertingConditionEvents;
//# sourceMappingURL=InvertingConditionEvents.js.map