29 lines
1.2 KiB
Lua
29 lines
1.2 KiB
Lua
---@meta
|
|
|
|
---@alias luassert.mockeds table<string, luassert.mockeds | luassert.spy>
|
|
|
|
---A mock wraps an entire table's functions in spies or mocks
|
|
---@class luassert.mock : luassert.spy.factory
|
|
local mock = {}
|
|
---@generic T
|
|
---Create a new mock from a table, wrapping all of it's functions in spies or mocks.
|
|
---@param object T The table to wrap
|
|
---@param doStubs? boolean If the table should be wrapped with stubs instead of spies
|
|
---@param func? function Callback function used for stubs
|
|
---@param self? table Table to replace with a spy
|
|
---@param key? string The key of the method to replace in `self`
|
|
---@return luassert.mockeds
|
|
function mock(object, doStubs, func, self, key) end
|
|
|
|
---@generic T
|
|
---Create a new mock from a table, wrapping all of it's functions in spies or mocks.
|
|
---@param object T The table to wrap
|
|
---@param doStubs? boolean If the table should be wrapped with stubs instead of spies
|
|
---@param func? function Callback function used for stubs
|
|
---@param self? table Table to replace with a spy
|
|
---@param key? string The key of the method to replace in `self`
|
|
---@return luassert.mockeds
|
|
function mock.new(object, doStubs, func, self, key) end
|
|
|
|
return mock
|