Main Content

Dépendances simulées dans les tests

Utiliser le Mocking Framework pour isoler une partie d’un système à tester en émulant le comportement des dépendances

Un test unitaire a souvent pour but de tester une partie d’un système complet isolée des dépendances. Pour tester une partie du système, il est possible d’utiliser des objets mock qui remplacent les dépendances. Un objet mock implémente au moins une partie de la même interface que l’objet en production, mais souvent de façon plus simple, plus rapide, plus prévisible ou plus facile à contrôler.

Pour en savoir plus, consultez Create Mock Object.

Test a component using mocked-up dependencies.

Classes

développer tout

matlab.mock.TestCaseClass for writing tests with mocking framework
matlab.mock.AnyArgumentsMatch any number of arguments
matlab.mock.actions.AssignOutputsDefine return values for method called or property accessed
matlab.mock.actions.DoNothingTake no action (depuis R2020a)
matlab.mock.actions.Invoke Invoke function handle when method is called
matlab.mock.actions.ReturnStoredValueReturn stored property value
matlab.mock.actions.StoreValueStore property value
matlab.mock.actions.ThrowExceptionThrow exception when method is called or when property is set or accessed
matlab.mock.constraints.Occurred Constraint qualifying mock object interactions
matlab.mock.constraints.WasAccessedConstraint determining property get access
matlab.mock.constraints.WasCalledConstraint determining method call
matlab.mock.constraints.WasSetConstraint determining property set interaction
matlab.mock.MethodCallBehaviorSpecify mock object method behavior and qualify method calls
matlab.mock.PropertyBehaviorSpecify mock object property behavior and qualify interactions
matlab.mock.PropertyGetBehaviorSpecify mock property get behavior
matlab.mock.PropertySetBehaviorSpecify mock object set behavior
getMockHistoryReturn history of mock object interactions
matlab.mock.InteractionHistory.forMockReturn history from mock object
matlab.mock.InteractionHistory Interface for mock object interaction history
matlab.mock.historySummary of classes representing mock object interaction history

Rubriques