Another alternative, as we do this, is to select the specification inside the visual studio, press F5 and execute the specification using the Rake task.
Example:
class DiffuserObserverSpecification : AutoMockSpecification<DiffuserObserver, IDiffuserObserver> class When_diffuser_observer_is_created : DiffuserObserverSpecification class When_diffuser_observer_has_injected_diffuser_change : DiffuserObserverSpecification
So, to fulfill the expectations of the behavior of all DiffuserObserverSpecification, we select DiffuserObserverSpecification and press F5.
And to perform only the behavior for the When_diffuser_observer_is_created parameter, select it and press F5.
After a month, you will forget what the debugger looks like.
source share