campus-errand/miniapp/node_modules/fast-check/lib/check/property/UnbiasedProperty.js
2026-03-01 05:01:47 +08:00

24 lines
527 B
JavaScript

export 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();
}
}