Method | Description | |
---|---|---|
Cleanup ( object sut ) : void |
Performs some cleanup operation on the sut.
|
|
EstablishContext ( IDependencyAccessor accessor ) : void |
Uses the accessor specified by accessor in order to configure some behavior on dependencies of the system under test. This is called before the system under test has been created.
|
|
PrepareSut ( object sut ) : void |
Does some preparation of the sut itself (e.g. adding some elements to container like structures)
|
public Cleanup ( object sut ) : void | ||
sut | object | Specifies the sut. |
return | void |
public EstablishContext ( IDependencyAccessor accessor ) : void | ||
accessor | IDependencyAccessor | Specifies the accessor for accessing dependencies of the SUT. |
return | void |
public PrepareSut ( object sut ) : void | ||
sut | object | Specifies the sut. |
return | void |