matlab.mock.actions.StoreValue - Store property value - MATLAB (original) (raw)
Main Content
Namespace: matlab.mock.actions
Description
The StoreValue
action specifies that the specified value is stored when setting a property.
By default, when you set property values in strict mocks, MATLABĀ® throws an exception. To specify that the framework stores the value of a mock object property, use the StoreValue
class.
Construction
action = StoreValue
stores a property value.
Methods
repeat | Repeat storing property value |
---|---|
then | Action for mock object interaction or action subsequent to storing property value |
Copy Semantics
Value. To learn how value classes affect copy operations, see Copying Objects.
Examples
Create a strict mock. By default, property interactions throw exceptions.
testCase = matlab.mock.TestCase.forInteractiveUse; properties = ["PropA" "PropB" "PropC"]; [mock, behavior] = testCase.createMock('AddedProperties',properties,"Strict",true);
Enable set access to PropA
.
import matlab.mock.actions.StoreValue when(set(behavior.PropA),StoreValue)
Use the mock.
Use the mock.
Assertion failed. ---------------- Test Diagnostic: ---------------- Unexpected set of strict mock property 'PropB'. Assertion failed.
Alternatives
For a simple directive to store property values, you can use the storeValueWhen method of the matlab.mock.TestCase
class. However, there is more functionality when you use the StoreValue
action.
Version History
Introduced in R2017a