From 8e13ae48081c2e05933a81d9f3381705a56c6891 Mon Sep 17 00:00:00 2001 From: MURAKAMI Masahiko Date: Fri, 18 Nov 2022 18:31:49 +0900 Subject: [PATCH] test_runner: add getter and setter to MockTracker This commit allows tests in test runner to use the `getter` and `setter` methods as "syntax sugar" for `MockTracker.method` with the `options.getter` or `options.setter` set to true in the options. Refs: https://github.com/nodejs/node/pull/45326#discussion_r1014727289 --- doc/api/test.md | 21 +++++++ lib/internal/test_runner/mock.js | 58 +++++++++++++++++++ test/parallel/test-runner-mocking.js | 87 ++++++++++++++++++++++++++++ 3 files changed, 166 insertions(+) diff --git a/doc/api/test.md b/doc/api/test.md index 4d5c50f51ff8ec..751d4345a9f8af 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -941,6 +941,17 @@ test('mocks a counting function', (t) => { }); ``` +they are sorted in alphabetical order. + +### `mock.getter(object, methodName[, implementation][, options])` + + + +This function is syntax sugar for [`MockTracker.method`][] with `options.getter` +set to `true`. + ### `mock.method(object, methodName[, implementation][, options])` + +This function is syntax sugar for [`MockTracker.method`][] with `options.setter` +set to `true`. + ## Class: `TapStream`