fast-check
Version:
Property based testing framework for JavaScript (like QuickCheck)
28 lines (27 loc) • 677 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnbiasedProperty = void 0;
class UnbiasedProperty {
constructor(property) {
this.property = property;
}
isAsync() {
return this.property.isAsync();
}
generate(mrng, _runId) {
return this.property.generate(mrng, undefined);
}
shrink(value) {
return this.property.shrink(value);
}
run(v) {
return this.property.run(v);
}
runBeforeEach() {
return this.property.runBeforeEach();
}
runAfterEach() {
return this.property.runAfterEach();
}
}
exports.UnbiasedProperty = UnbiasedProperty;
;