Model Object Testing
You can test all your model objects directly with no need of doing integration testing. This way you can unit test model objects very very easily using great mocking capabilities. All you need to do is the following:
This testing support class will create your model object, and decorate with mocking capabilities via MockBox and create some mocking classes you might find useful in your model object unit testing. The following are the objects that are placed in the variables scope for you to use:
model
: The target model object to testmockLogger
: A mock logger classmockLogBox
: A mock LogBox classmockCacheBox
: A mock Cache Factory classmockWireBox
: A mock WireBox Injector class
Caution We do not initialize your model objects for you. This is your job as you might need some mocking first.
Basic Setup
Last updated