How do I test a method that returns void?
Created May 7, 2012
Mike Clark Test an expected side-effect of the method. This may involve querying an instance
variable or passing in a mock object to collect the results of the method. The latter
is sometimes useful to avoid breaking encapsulation.
Also consider changing the method so that it returns a value that can be asserted.