Namespace AutoFixture.AutoNSubstitute
Namespaces
AutoFixture.AutoNSubstitute.CustomCallHandler
Classes
Enables auto-mocking with NSubstitute.
Provides pre- and post-condition checks for requests for substituted instances.
Selects appropriate methods to create substitutes.
NSubstituteRegisterCallHandlerCommand
Sets up a substitute object's methods so that the return values will be retrieved from a fixture, instead of being created directly by NSubstitute.
This will setup any void/non-void virtual methods (including property getters and generics).
NSubstituteSealedPropertiesCommand
If the type of the object being substituted contains any fields and/or non-virtual/sealed settable properties, this initializer will resolve them from a given context.
An attribute that can be applied to code elements to indicate they should be auto-generated by creating a substitute.
Relays a request for a code element marked with the SubstituteAttribute to a
SubstituteRequest of element's type.
Relays a request for an interface or an abstract class to a request for a substitute of that type.
Defines a request for a substitute.
Creates a substitute in response to the SubstituteRequest.