I am using Easy mock.
- I call a method of my actual class from my Test class.
- Inside that method I create an object called 'A' on the fly with child objects.
- I pass that object 'A' to a remote service and a output returns.
I don't want to asset that returned output. (That is already taken care of)
I want assert and make sure that, my object created successfully and weather it contains the relevant child objects? Can I access this object from my Test Class before or after it get passed to remote service.
Is this possible.
Thank you very much :)