├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── other-issues.md │ └── question.md ├── dependabot.yml └── workflows │ ├── release_documentation.yml │ ├── release_packages.yml │ └── test.yml ├── .gitignore ├── BreakingChanges.md ├── CHANGELOG.md ├── Directory.Build.props ├── LICENSE.txt ├── NSubstitute.slnx ├── README.md ├── acknowledgements.md ├── docs ├── docfx.json ├── favicon.ico ├── help.md ├── help │ ├── actions-with-arguments │ │ └── index.md │ ├── argument-matchers │ │ └── index.md │ ├── auto-and-recursive-mocks │ │ └── index.md │ ├── callbacks │ │ └── index.md │ ├── clear-received-calls │ │ └── index.md │ ├── compat-args │ │ └── index.md │ ├── configure │ │ └── index.md │ ├── creating-a-substitute │ │ └── index.md │ ├── getting-started │ │ └── index.md │ ├── how-nsub-works │ │ └── index.md │ ├── multiple-returns │ │ └── index.md │ ├── nsubstitute-analysers │ │ └── index.md │ ├── partial-subs │ │ └── index.md │ ├── raising-events │ │ └── index.md │ ├── received-calls │ │ └── index.md │ ├── received-in-order │ │ └── index.md │ ├── replacing-return-values │ │ └── index.md │ ├── return-for-all │ │ └── index.md │ ├── return-for-any-args │ │ └── index.md │ ├── return-for-args │ │ └── index.md │ ├── return-from-function │ │ └── index.md │ ├── search │ │ └── index.md │ ├── set-return-value │ │ └── index.md │ ├── setting-out-and-ref-arguments │ │ └── index.md │ ├── threading │ │ └── index.md │ ├── throwing-exceptions │ │ └── index.md │ └── toc.yml ├── images │ ├── NSubstitute.ai │ ├── github-16x16.png │ ├── nsubstitute-100x100.png │ ├── nsubstitute-16x16.png │ ├── nsubstitute-32x32.png │ ├── nuget-16x16.png │ ├── teamcity-16x16.png │ └── teamcity-32x32.png ├── index.md └── toc.yml ├── global.json ├── src └── NSubstitute │ ├── Arg.cs │ ├── Callback.cs │ ├── Callbacks │ └── ConfiguredCallback.cs │ ├── ClearOptions.cs │ ├── Compatibility │ ├── Arg.Compat.cs │ ├── CompatArg.cs │ └── DiagnosticsNullabilityAttributes.cs │ ├── Core │ ├── Argument.cs │ ├── ArgumentSpecificationDequeue.cs │ ├── Arguments │ │ ├── AnyArgumentMatcher.cs │ │ ├── ArgumentFormatter.cs │ │ ├── ArgumentMatchInfo.cs │ │ ├── ArgumentMatcher.cs │ │ ├── ArgumentSpecification.cs │ │ ├── ArgumentSpecificationCompatibilityTester.cs │ │ ├── ArgumentSpecificationFactory.cs │ │ ├── ArgumentSpecificationsFactory.cs │ │ ├── ArrayContentsArgumentMatcher.cs │ │ ├── DefaultChecker.cs │ │ ├── EqualsArgumentMatcher.cs │ │ ├── ExpressionArgumentMatcher.cs │ │ ├── IArgumentFormatter.cs │ │ ├── IArgumentMatcher.cs │ │ ├── IArgumentSpecification.cs │ │ ├── IArgumentSpecificationCompatibilityTester.cs │ │ ├── IArgumentSpecificationFactory.cs │ │ ├── IArgumentSpecificationsFactory.cs │ │ ├── IDefaultChecker.cs │ │ ├── ISuppliedArgumentSpecifications.cs │ │ ├── ISuppliedArgumentSpecificationsFactory.cs │ │ ├── SuppliedArgumentSpecifications.cs │ │ └── SuppliedArgumentSpecificationsFactory.cs │ ├── Call.cs │ ├── CallActions.cs │ ├── CallBaseConfiguration.cs │ ├── CallCollection.cs │ ├── CallFactory.cs │ ├── CallFormatter.cs │ ├── CallInfo.cs │ ├── CallInfoFactory.cs │ ├── CallResults.cs │ ├── CallRouter.cs │ ├── CallRouterFactory.cs │ ├── CallRouterResolver.cs │ ├── CallSpecAndTarget.cs │ ├── CallSpecification.cs │ ├── CallSpecificationFactory.cs │ ├── ConfigureCall.cs │ ├── ConfiguredCall.cs │ ├── CustomHandlers.cs │ ├── DefaultForType.cs │ ├── DependencyInjection │ │ ├── INSubContainer.cs │ │ ├── NSubContainer.cs │ │ ├── NSubLifetime.cs │ │ └── NSubstituteDefaultFactory.cs │ ├── EventCallFormatter.cs │ ├── EventHandlerRegistry.cs │ ├── Events │ │ ├── DelegateEventWrapper.cs │ │ ├── EventHandlerWrapper.cs │ │ └── RaiseEventWrapper.cs │ ├── Extensions.cs │ ├── GetCallSpec.cs │ ├── IArgumentSpecificationDequeue.cs │ ├── ICall.cs │ ├── ICallActions.cs │ ├── ICallBaseConfiguration.cs │ ├── ICallCollection.cs │ ├── ICallFactory.cs │ ├── ICallHandler.cs │ ├── ICallInfoFactory.cs │ ├── ICallResults.cs │ ├── ICallRouter.cs │ ├── ICallRouterFactory.cs │ ├── ICallRouterProvider.cs │ ├── ICallRouterResolver.cs │ ├── ICallSpecification.cs │ ├── ICallSpecificationFactory.cs │ ├── IConfigureCall.cs │ ├── ICustomHandlers.cs │ ├── IDefaultForType.cs │ ├── IDescribeNonMatches.cs │ ├── IDescribeSpecification.cs │ ├── IEventHandlerRegistry.cs │ ├── IGetCallSpec.cs │ ├── IMethodInfoFormatter.cs │ ├── IParameterInfo.cs │ ├── IPendingSpecification.cs │ ├── IPropertyHelper.cs │ ├── IProxyFactory.cs │ ├── IQuery.cs │ ├── IQueryResults.cs │ ├── IReceivedCallsExceptionThrower.cs │ ├── IResultsForType.cs │ ├── IReturn.cs │ ├── ISubstituteFactory.cs │ ├── ISubstituteState.cs │ ├── ISubstituteStateFactory.cs │ ├── ISubstitutionContext.cs │ ├── IThreadLocalContext.cs │ ├── MatchArgs.cs │ ├── Maybe.cs │ ├── MethodFormatter.cs │ ├── ParameterInfoWrapper.cs │ ├── PendingSpecificationInfo.cs │ ├── PropertyCallFormatter.cs │ ├── PropertyHelper.cs │ ├── Query.cs │ ├── ReceivedCallsExceptionThrower.cs │ ├── ReflectionExtensions.cs │ ├── ResultsForType.cs │ ├── ReturnObservable.cs │ ├── RobustThreadLocal.cs │ ├── RouteAction.cs │ ├── RouteFactoryCacheWrapper.cs │ ├── SequenceChecking │ │ ├── InstanceTracker.cs │ │ ├── SequenceFormatter.cs │ │ └── SequenceInOrderAssertion.cs │ ├── SequenceNumberGenerator.cs │ ├── SubstituteFactory.cs │ ├── SubstituteState.cs │ ├── SubstituteStateFactory.cs │ ├── SubstitutionContext.cs │ ├── ThreadLocalContext.cs │ └── WhenCalled.cs │ ├── Exceptions │ ├── AmbiguousArgumentsException.cs │ ├── ArgumentIsNotOutOrRefException.cs │ ├── ArgumentNotFoundException.cs │ ├── ArgumentSetWithIncompatibleValueException.cs │ ├── CallSequenceNotFoundException.cs │ ├── CanNotPartiallySubForInterfaceOrDelegateException.cs │ ├── CannotCreateEventArgsException.cs │ ├── CannotReturnNullforValueType.cs │ ├── CouldNotConfigureBaseMethodException.cs │ ├── CouldNotRaiseEventException.cs │ ├── CouldNotSetReturnException.cs │ ├── MissingSequenceNumberException.cs │ ├── NotASubstituteException.cs │ ├── NotRunningAQueryException.cs │ ├── NullSubstituteReferenceException.cs │ ├── ProtectedMethodNotFoundException.cs │ ├── ProtectedMethodNotVirtualException.cs │ ├── ReceivedCallsException.cs │ ├── RedundantArgumentMatcherException.cs │ ├── SubstituteException.cs │ ├── SubstituteInternalException.cs │ ├── TypeForwardingException.cs │ └── UnexpectedArgumentMatcherException.cs │ ├── Extensions │ ├── ClearExtensions.cs │ ├── ConfigurationExtensions.cs │ ├── ExceptionExtensions.cs │ ├── ProtectedExtensions.cs │ ├── ReceivedExtensions.cs │ ├── ReturnsExtensions.cs │ └── ReturnsForAllExtensions.cs │ ├── NSubstitute.csproj │ ├── Proxies │ └── CastleDynamicProxy │ │ ├── CastleDynamicProxyFactory.cs │ │ ├── CastleForwardingInterceptor.cs │ │ ├── CastleInvocationMapper.cs │ │ └── ProxyIdInterceptor.cs │ ├── README.md │ ├── Raise.cs │ ├── Received.cs │ ├── Routing │ ├── AutoValues │ │ ├── AutoArrayProvider.cs │ │ ├── AutoObservableProvider.cs │ │ ├── AutoQueryableProvider.cs │ │ ├── AutoStringProvider.cs │ │ ├── AutoSubstituteProvider.cs │ │ ├── AutoTaskProvider.cs │ │ ├── AutoValueProvidersFactory.cs │ │ ├── IAutoValueProvider.cs │ │ └── IAutoValueProvidersFactory.cs │ ├── Handlers │ │ ├── AddCallToQueryResultHandler.cs │ │ ├── CallBaseForCallHandler.cs │ │ ├── CheckReceivedCallsHandler.cs │ │ ├── ClearLastCallRouterHandler.cs │ │ ├── ClearUnusedCallSpecHandler.cs │ │ ├── DoActionsCallHandler.cs │ │ ├── DoNotCallBaseForCallHandler.cs │ │ ├── EventSubscriptionHandler.cs │ │ ├── PropertySetterHandler.cs │ │ ├── RaiseEventHandler.cs │ │ ├── RecordCallHandler.cs │ │ ├── RecordCallSpecificationHandler.cs │ │ ├── ReturnAutoValue.cs │ │ ├── ReturnConfiguredResultHandler.cs │ │ ├── ReturnDefaultForReturnTypeHandler.cs │ │ ├── ReturnFromAndConfigureDynamicCall.cs │ │ ├── ReturnFromBaseIfRequired.cs │ │ ├── ReturnFromCustomHandlers.cs │ │ ├── ReturnResultForTypeHandler.cs │ │ ├── SetActionForCallHandler.cs │ │ └── TrackLastCallHandler.cs │ ├── IRoute.cs │ ├── IRouteFactory.cs │ ├── Route.cs │ └── RouteFactory.cs │ ├── Substitute.cs │ ├── SubstituteExtensions.Received.cs │ ├── SubstituteExtensions.Returns.Task.cs │ ├── SubstituteExtensions.Returns.ValueTask.cs │ ├── SubstituteExtensions.Returns.cs │ ├── SubstituteExtensions.When.Task.cs │ ├── SubstituteExtensions.When.ValueTask.cs │ ├── SubstituteExtensions.When.cs │ └── nsubstitute.snk └── tests ├── NSubstitute.Acceptance.Specs ├── ArgDoFromMatcher.cs ├── ArgumentInvocationFromMatchers.cs ├── ArgumentMatching.cs ├── ArgumentMatchingCompat.cs ├── AssemblySigningTest.cs ├── AsyncEventHandlers │ ├── AsyncEventHandlersWithNSubstituteTests.cs │ ├── ITestInterface.cs │ └── TestImplementation.cs ├── AutoValuesForSubs.cs ├── CallbackCalling.cs ├── ClearSubstitute.cs ├── CompatArgsTests.cs ├── ConcurrencyTests.cs ├── ConfigurationExtensionTests.cs ├── CustomHandlersSpecs.cs ├── DynamicCalls.cs ├── EventChecking.cs ├── EventRaising.cs ├── ExceptionsWhenCheckingReceivedCalls.cs ├── ExceptionsWhenCheckingSequencesOfCalls.cs ├── FieldReports │ ├── ArgMatchingWithNestedSubCalls.cs │ ├── ArgMatchingWithValueTypeArgSpecsForObjectArguments.cs │ ├── CallingIntoNewSubWithinReturns.cs │ ├── DisposeWithThreadLocal.cs │ ├── EqualsBehaviourOnClassSubs.cs │ ├── ExceptionsThrownFromCustomArgumentMatchers.cs │ ├── Issue110_CustomExceptions.cs │ ├── Issue111_ArgMatchesWithRefAndOutParams.cs │ ├── Issue114_ArgumentCheckOfOptionalParameter.cs │ ├── Issue118_ConcreteClassWithPublicStaticMethod.cs │ ├── Issue125_MethodWithSealedClassReturnType.cs │ ├── Issue129_AmbiguousArgsWithOutRef.cs │ ├── Issue149_ArgMatcherInReturns.cs │ ├── Issue170_MultidimensionalArray.cs │ ├── Issue211_ReceivedInOrderParamsFormatting.cs │ ├── Issue225_ConfiguredValueIsUsedInSubsequentSetups.cs │ ├── Issue237_ReceivedInOrderErrorHandling.cs │ ├── Issue262_NonPublicSetterCall.cs │ ├── Issue271_DelegateOutArgument.cs │ ├── Issue279_ShouldFailOnRedundantArguments.cs │ ├── Issue282_MultipleReturnValuesParallelism.cs │ ├── Issue291_CannotReconfigureThrowingConfiguration.cs │ ├── Issue33_RaisingINotifyPropertyChangedEvents.cs │ ├── Issue372_InterfaceSameNameOfMethods.cs │ ├── Issue378_InValueTypes.cs │ ├── Issue38_SettingNullReturnValue.cs │ ├── Issue423_SetVirtualMembersInConstructor.cs │ ├── Issue45_CallInfoArgAccessFailsForNull.cs │ ├── Issue47_RaisingEventsWithNullArg.cs │ ├── Issue500_SpecialMethodsWithoutAttribute.cs │ ├── Issue515_OutOfRangeExceptionForNestedGenericTypes.cs │ ├── Issue533_TaskExceptionMightBeSwallowed.cs │ ├── Issue560_RaiseEventWithArrayArg.cs │ ├── Issue569_QueryShouldNotInvokeConfiguredResult.cs │ ├── Issue577_CannotSetOutValue.cs │ ├── Issue57_SettingVirtualPropertyInCtor.cs │ ├── Issue59_ArgDoWithReturns.cs │ ├── Issue61_ArgAnyStringRegression.cs │ ├── Issue631_NamespaceDelegate.cs │ ├── Issue75_DoesNotWorkWithMembersThatUseDynamic.cs │ ├── Issue77_EqualsBehaviourOnClassStubs.cs │ ├── Issue83_MethodsWithGenericStructConstraint.cs │ ├── Issue_RaiseEventOnNonSubstitute.cs │ ├── MigratingToCompatArgs.cs │ ├── Regression_ReceivedClearsStub.cs │ ├── StaticStateBleeding.cs │ └── SubbingSynchronizationContext.cs ├── FormattingCallsWhenThrowingReceivedCallsExceptions.cs ├── GenericArguments.cs ├── ILoggerTests.cs ├── Infrastructure │ ├── AnotherClass.cs │ ├── BackgroundTask.cs │ ├── FluentSomething.cs │ ├── IFluentSomething.cs │ ├── ISomething.cs │ ├── ISomethingWithGenericMethods.cs │ ├── PendingAttribute.cs │ └── SomeClass.cs ├── MatchingDerivedTypesForGenerics.cs ├── MultipleThreads.cs ├── NSubContainerTests.cs ├── NSubstitute.Acceptance.Specs.csproj ├── NotASubstituteExceptions.cs ├── NullReferenceCheckingForSubstituteExtensions.cs ├── OutAndRefParameters.cs ├── PartialSubExamples.cs ├── PartialSubs.cs ├── PerfTests.cs ├── PropertyBehaviour.cs ├── ProtectedExtensionsTests.cs ├── ProxyIdentification.cs ├── ReceivedCalls.cs ├── RecursiveSubs.cs ├── ReturningResults.cs ├── ReturnsAndDoes.cs ├── ReturnsForAll.cs ├── ReturnsForAllFromFunc.cs ├── SequenceChecking.cs ├── SimpleSubstituteExamples.cs ├── SubbingForConcreteTypesAndMultipleInterfaces.cs ├── SubbingForEventHandler.cs ├── SubstituteTimingAndInteractions.cs ├── SubstitutingForDelegates.cs ├── ThrowingAsyncExceptions.cs ├── ThrowingExceptions.cs ├── TypeForwarding.cs └── WhenCalledDo.cs ├── NSubstitute.Benchmarks ├── ActivationBenchmark.cs ├── ArgumentSpecificationUsageBenchmark.cs ├── DispatchConfiguredMatchingCallBenchmark.cs ├── DispatchConfiguredNonMatchingCallBenchmark.cs ├── DispatchNonConfiguredCallBenchmark.cs ├── NSubstitute.Benchmarks.csproj ├── Program.cs ├── TestTypes │ ├── AbstractClassWithSingleMethod.cs │ ├── ClassWithSingleMethod.cs │ ├── ClassWithToStringImplementation.cs │ ├── Delegates.cs │ ├── IInterfaceWithMultipleMethods.cs │ └── IInterfaceWithSingleMethod.cs ├── ToStringCallBenchmark.cs └── VerifyReceivedCallBenchmark.cs ├── NSubstitute.Documentation.Tests.Generator ├── DocumentationTestsGenerator.cs └── NSubstitute.Documentation.Tests.Generator.csproj ├── NSubstitute.Documentation.Tests └── NSubstitute.Documentation.Tests.csproj └── NSubstitute.Specs ├── AnonymousObserver.cs ├── ArgumentSpecs.cs ├── Arguments ├── ArgumentSpecificationFactorySpecs.cs ├── ArgumentSpecificationSpecs.cs ├── ArgumentSpecificationsFactorySpecs.cs ├── ArrayArgumentSpecificationsFactorySpecs.cs ├── ArrayContentsArgumentMatcherSpecs.cs ├── DefaultCheckerSpecs.cs ├── EqualsArgumentMatcherSpecs.cs ├── ExpressionArgumentMatcherSpecs.cs ├── MixedArgumentSpecificationsFactorySpecs.cs ├── NonParamsArgumentSpecificationFactorySpecs.cs ├── ParameterInfosFromParamsArrayFactorySpecs.cs ├── ParamsArgumentSpecificationFactorySpecs.cs ├── SuppliedArgumentSpecificationsFactorySpecs.cs └── SuppliedArgumentSpecificationsSpecs.cs ├── CallActionsSpecs.cs ├── CallBaseExclusionsSpecs.cs ├── CallCollectionSpecs.cs ├── CallFactorySpecs.cs ├── CallFormatterSpecs.cs ├── CallInfoFactorySpecs.cs ├── CallInfoSpecs.cs ├── CallResultsSpecs.cs ├── CallRouterResolverSpecs.cs ├── CallRouterSpecs.cs ├── CallSpecificationFactorySpecs.cs ├── CallSpecificationSpecs.cs ├── ClearSubstituteExtensionSpec.cs ├── ConfigureCallSpecs.cs ├── DefaultForTypeSpecs.cs ├── DidNotReceiveExtensionsSpecs.cs ├── DidNotReceiveWithAnyArgsExtensionSpec.cs ├── EventHandlerRegistrySpec.cs ├── ExceptionsSpecs.cs ├── ExtensionsSpecs.cs ├── GetCallSpecSpecs.cs ├── Infrastructure ├── BaseConcern.cs ├── ConcernFor.cs ├── ITemporaryChange.cs ├── MockingAdaptor.cs ├── ReflectionHelper.cs ├── StaticConcern.cs ├── TemporaryChange.cs ├── TemporaryChangeNotConfiguredProperlyException.cs ├── TemporaryChangeToBuilder.cs ├── TestCallRouter.cs └── Tests │ ├── BaseConcernSpecs.cs │ └── ReflectionHelperSpecs.cs ├── NSubstitute.Specs.csproj ├── PendingSpecificationSpecs.cs ├── Properties └── AssemblyInfo.cs ├── PropertyHelperSpecs.cs ├── Proxies ├── CastleDynamicProxy │ └── CastleDynamicProxyFactorySpecs.cs ├── DelegateProxy │ └── DelegateProxyFactorySpecs.cs └── ProxyFactorySpecs.cs ├── QuantitySpecs.cs ├── ReceivedCallsExceptionThrowerSpecs.cs ├── ReceivedCallsExtensionSpec.cs ├── ReceivedExtensionSpec.cs ├── ReceivedWithAnyArgsExtensionSpec.cs ├── ReflectionExtensionsSpecs.cs ├── ResultsForTypeSpec.cs ├── ReturnExtensionSpec.cs ├── ReturnValueFromFuncSpec.cs ├── ReturnsForAllExtensionSpecs.cs ├── ReturnsForAllFuncExtensionSpecs.cs ├── Routing ├── AutoValues │ ├── AutoArrayProviderSpecs.cs │ ├── AutoQueryableProviderSpecs.cs │ ├── AutoStringProviderSpecs.cs │ ├── AutoSubstituteProviderSpecs.cs │ └── AutoTaskProviderSpecs.cs ├── Handlers │ ├── AddCallToQueryResultHandlerSpecs.cs │ ├── CheckReceivedCallHandlerSpecs.cs │ ├── ClearLastCallRouterHandlerSpecs.cs │ ├── DoActionsCallHandlerSpecs.cs │ ├── EventSubscriptionHandlerSpec.cs │ ├── PropertySetterHandlerSpecs.cs │ ├── RaiseEventHandlerSpec.cs │ ├── RecordCallHandlerSpecs.cs │ ├── ReturnAutoValueSpecs.cs │ ├── ReturnConfiguredResultHandlerSpecs.cs │ ├── ReturnDefaultForReturnTypeHandlerSpecs.cs │ ├── ReturnResultForTypeHandlerSpecs.cs │ └── SetActionsForCallHandlerSpecs.cs └── RouteSpecs.cs ├── SampleStructures ├── Foo.cs └── IFoo.cs ├── SequenceChecking └── InstanceTrackerSpecs.cs ├── SubstituteFactorySpecs.cs ├── SubstituteSpecs.cs ├── SubstitutionContextSpecs.cs └── WhenCalledSpecs.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/ISSUE_TEMPLATE/other-issues.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/workflows/release_documentation.yml -------------------------------------------------------------------------------- /.github/workflows/release_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/workflows/release_packages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/.gitignore -------------------------------------------------------------------------------- /BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/BreakingChanges.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NSubstitute.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/NSubstitute.slnx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/README.md -------------------------------------------------------------------------------- /acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/acknowledgements.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/help/actions-with-arguments/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/actions-with-arguments/index.md -------------------------------------------------------------------------------- /docs/help/argument-matchers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/argument-matchers/index.md -------------------------------------------------------------------------------- /docs/help/auto-and-recursive-mocks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/auto-and-recursive-mocks/index.md -------------------------------------------------------------------------------- /docs/help/callbacks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/callbacks/index.md -------------------------------------------------------------------------------- /docs/help/clear-received-calls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/clear-received-calls/index.md -------------------------------------------------------------------------------- /docs/help/compat-args/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/compat-args/index.md -------------------------------------------------------------------------------- /docs/help/configure/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/configure/index.md -------------------------------------------------------------------------------- /docs/help/creating-a-substitute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/creating-a-substitute/index.md -------------------------------------------------------------------------------- /docs/help/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/getting-started/index.md -------------------------------------------------------------------------------- /docs/help/how-nsub-works/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/how-nsub-works/index.md -------------------------------------------------------------------------------- /docs/help/multiple-returns/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/multiple-returns/index.md -------------------------------------------------------------------------------- /docs/help/nsubstitute-analysers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/nsubstitute-analysers/index.md -------------------------------------------------------------------------------- /docs/help/partial-subs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/partial-subs/index.md -------------------------------------------------------------------------------- /docs/help/raising-events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/raising-events/index.md -------------------------------------------------------------------------------- /docs/help/received-calls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/received-calls/index.md -------------------------------------------------------------------------------- /docs/help/received-in-order/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/received-in-order/index.md -------------------------------------------------------------------------------- /docs/help/replacing-return-values/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/replacing-return-values/index.md -------------------------------------------------------------------------------- /docs/help/return-for-all/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/return-for-all/index.md -------------------------------------------------------------------------------- /docs/help/return-for-any-args/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/return-for-any-args/index.md -------------------------------------------------------------------------------- /docs/help/return-for-args/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/return-for-args/index.md -------------------------------------------------------------------------------- /docs/help/return-from-function/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/return-from-function/index.md -------------------------------------------------------------------------------- /docs/help/search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/search/index.md -------------------------------------------------------------------------------- /docs/help/set-return-value/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/set-return-value/index.md -------------------------------------------------------------------------------- /docs/help/setting-out-and-ref-arguments/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/setting-out-and-ref-arguments/index.md -------------------------------------------------------------------------------- /docs/help/threading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/threading/index.md -------------------------------------------------------------------------------- /docs/help/throwing-exceptions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/throwing-exceptions/index.md -------------------------------------------------------------------------------- /docs/help/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/help/toc.yml -------------------------------------------------------------------------------- /docs/images/NSubstitute.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/NSubstitute.ai -------------------------------------------------------------------------------- /docs/images/github-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/github-16x16.png -------------------------------------------------------------------------------- /docs/images/nsubstitute-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/nsubstitute-100x100.png -------------------------------------------------------------------------------- /docs/images/nsubstitute-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/nsubstitute-16x16.png -------------------------------------------------------------------------------- /docs/images/nsubstitute-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/nsubstitute-32x32.png -------------------------------------------------------------------------------- /docs/images/nuget-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/nuget-16x16.png -------------------------------------------------------------------------------- /docs/images/teamcity-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/teamcity-16x16.png -------------------------------------------------------------------------------- /docs/images/teamcity-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/images/teamcity-32x32.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/global.json -------------------------------------------------------------------------------- /src/NSubstitute/Arg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Arg.cs -------------------------------------------------------------------------------- /src/NSubstitute/Callback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Callback.cs -------------------------------------------------------------------------------- /src/NSubstitute/Callbacks/ConfiguredCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Callbacks/ConfiguredCallback.cs -------------------------------------------------------------------------------- /src/NSubstitute/ClearOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/ClearOptions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Compatibility/Arg.Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Compatibility/Arg.Compat.cs -------------------------------------------------------------------------------- /src/NSubstitute/Compatibility/CompatArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Compatibility/CompatArg.cs -------------------------------------------------------------------------------- /src/NSubstitute/Compatibility/DiagnosticsNullabilityAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Compatibility/DiagnosticsNullabilityAttributes.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Argument.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ArgumentSpecificationDequeue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ArgumentSpecificationDequeue.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/AnyArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/AnyArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentMatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentMatchInfo.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentSpecificationCompatibilityTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentSpecificationCompatibilityTester.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentSpecificationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentSpecificationFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArgumentSpecificationsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArgumentSpecificationsFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ArrayContentsArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ArrayContentsArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/DefaultChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/DefaultChecker.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/EqualsArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/EqualsArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ExpressionArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ExpressionArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentMatcher.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentSpecificationCompatibilityTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentSpecificationCompatibilityTester.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentSpecificationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentSpecificationFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IArgumentSpecificationsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IArgumentSpecificationsFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/IDefaultChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/IDefaultChecker.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ISuppliedArgumentSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ISuppliedArgumentSpecifications.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/ISuppliedArgumentSpecificationsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/ISuppliedArgumentSpecificationsFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/SuppliedArgumentSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/SuppliedArgumentSpecifications.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Arguments/SuppliedArgumentSpecificationsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Arguments/SuppliedArgumentSpecificationsFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Call.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallActions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallBaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallBaseConfiguration.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallCollection.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallInfo.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallInfoFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallResults.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallRouter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallRouterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallRouterFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallRouterResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallRouterResolver.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallSpecAndTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallSpecAndTarget.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CallSpecificationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CallSpecificationFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ConfigureCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ConfigureCall.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ConfiguredCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ConfiguredCall.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/CustomHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/CustomHandlers.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/DefaultForType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/DefaultForType.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/DependencyInjection/INSubContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/DependencyInjection/INSubContainer.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/DependencyInjection/NSubContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/DependencyInjection/NSubContainer.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/DependencyInjection/NSubLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/DependencyInjection/NSubLifetime.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/DependencyInjection/NSubstituteDefaultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/DependencyInjection/NSubstituteDefaultFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/EventCallFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/EventCallFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/EventHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/EventHandlerRegistry.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Events/DelegateEventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Events/DelegateEventWrapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Events/EventHandlerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Events/EventHandlerWrapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Events/RaiseEventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Events/RaiseEventWrapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Extensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/GetCallSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/GetCallSpec.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IArgumentSpecificationDequeue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IArgumentSpecificationDequeue.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICall.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallActions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallBaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallBaseConfiguration.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallCollection.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallInfoFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallResults.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallRouter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallRouterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallRouterFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallRouterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallRouterProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallRouterResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallRouterResolver.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICallSpecificationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICallSpecificationFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IConfigureCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IConfigureCall.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ICustomHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ICustomHandlers.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IDefaultForType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IDefaultForType.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IDescribeNonMatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IDescribeNonMatches.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IDescribeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IDescribeSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IEventHandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IEventHandlerRegistry.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IGetCallSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IGetCallSpec.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IMethodInfoFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IMethodInfoFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IParameterInfo.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IPendingSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IPendingSpecification.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IPropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IPropertyHelper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IProxyFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IQuery.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IQueryResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IQueryResults.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IReceivedCallsExceptionThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IReceivedCallsExceptionThrower.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IResultsForType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IResultsForType.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IReturn.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ISubstituteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ISubstituteFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ISubstituteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ISubstituteState.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ISubstituteStateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ISubstituteStateFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ISubstitutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ISubstitutionContext.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/IThreadLocalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/IThreadLocalContext.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/MatchArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/MatchArgs.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Maybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Maybe.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/MethodFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/MethodFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ParameterInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ParameterInfoWrapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/PendingSpecificationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/PendingSpecificationInfo.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/PropertyCallFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/PropertyCallFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/PropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/PropertyHelper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/Query.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ReceivedCallsExceptionThrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ReceivedCallsExceptionThrower.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ResultsForType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ResultsForType.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ReturnObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ReturnObservable.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/RobustThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/RobustThreadLocal.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/RouteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/RouteAction.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/RouteFactoryCacheWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/RouteFactoryCacheWrapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SequenceChecking/InstanceTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SequenceChecking/InstanceTracker.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SequenceChecking/SequenceFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SequenceChecking/SequenceFormatter.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SequenceChecking/SequenceInOrderAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SequenceChecking/SequenceInOrderAssertion.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SequenceNumberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SequenceNumberGenerator.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SubstituteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SubstituteFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SubstituteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SubstituteState.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SubstituteStateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SubstituteStateFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/SubstitutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/SubstitutionContext.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/ThreadLocalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/ThreadLocalContext.cs -------------------------------------------------------------------------------- /src/NSubstitute/Core/WhenCalled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Core/WhenCalled.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/AmbiguousArgumentsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/AmbiguousArgumentsException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ArgumentIsNotOutOrRefException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ArgumentIsNotOutOrRefException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ArgumentNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ArgumentNotFoundException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ArgumentSetWithIncompatibleValueException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ArgumentSetWithIncompatibleValueException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CallSequenceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CallSequenceNotFoundException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CanNotPartiallySubForInterfaceOrDelegateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CanNotPartiallySubForInterfaceOrDelegateException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CannotCreateEventArgsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CannotCreateEventArgsException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CannotReturnNullforValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CannotReturnNullforValueType.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CouldNotConfigureBaseMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CouldNotConfigureBaseMethodException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CouldNotRaiseEventException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CouldNotRaiseEventException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/CouldNotSetReturnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/CouldNotSetReturnException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/MissingSequenceNumberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/MissingSequenceNumberException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/NotASubstituteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/NotASubstituteException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/NotRunningAQueryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/NotRunningAQueryException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/NullSubstituteReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/NullSubstituteReferenceException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ProtectedMethodNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ProtectedMethodNotFoundException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ProtectedMethodNotVirtualException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ProtectedMethodNotVirtualException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/ReceivedCallsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/ReceivedCallsException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/RedundantArgumentMatcherException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/RedundantArgumentMatcherException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/SubstituteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/SubstituteException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/SubstituteInternalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/SubstituteInternalException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/TypeForwardingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/TypeForwardingException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Exceptions/UnexpectedArgumentMatcherException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Exceptions/UnexpectedArgumentMatcherException.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ClearExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ClearExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ProtectedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ProtectedExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ReceivedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ReceivedExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ReturnsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ReturnsExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/Extensions/ReturnsForAllExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Extensions/ReturnsForAllExtensions.cs -------------------------------------------------------------------------------- /src/NSubstitute/NSubstitute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/NSubstitute.csproj -------------------------------------------------------------------------------- /src/NSubstitute/Proxies/CastleDynamicProxy/CastleDynamicProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Proxies/CastleDynamicProxy/CastleDynamicProxyFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Proxies/CastleDynamicProxy/CastleForwardingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Proxies/CastleDynamicProxy/CastleForwardingInterceptor.cs -------------------------------------------------------------------------------- /src/NSubstitute/Proxies/CastleDynamicProxy/CastleInvocationMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Proxies/CastleDynamicProxy/CastleInvocationMapper.cs -------------------------------------------------------------------------------- /src/NSubstitute/Proxies/CastleDynamicProxy/ProxyIdInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Proxies/CastleDynamicProxy/ProxyIdInterceptor.cs -------------------------------------------------------------------------------- /src/NSubstitute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/README.md -------------------------------------------------------------------------------- /src/NSubstitute/Raise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Raise.cs -------------------------------------------------------------------------------- /src/NSubstitute/Received.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Received.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoArrayProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoArrayProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoObservableProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoObservableProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoQueryableProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoQueryableProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoStringProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoStringProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoSubstituteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoSubstituteProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoTaskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoTaskProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/AutoValueProvidersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/AutoValueProvidersFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/IAutoValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/IAutoValueProvider.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/AutoValues/IAutoValueProvidersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/AutoValues/IAutoValueProvidersFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/AddCallToQueryResultHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/AddCallToQueryResultHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/CallBaseForCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/CallBaseForCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/CheckReceivedCallsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/CheckReceivedCallsHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ClearLastCallRouterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ClearLastCallRouterHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ClearUnusedCallSpecHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ClearUnusedCallSpecHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/DoActionsCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/DoActionsCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/DoNotCallBaseForCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/DoNotCallBaseForCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/EventSubscriptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/EventSubscriptionHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/PropertySetterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/PropertySetterHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/RaiseEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/RaiseEventHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/RecordCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/RecordCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/RecordCallSpecificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/RecordCallSpecificationHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnAutoValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnAutoValue.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnConfiguredResultHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnConfiguredResultHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnDefaultForReturnTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnDefaultForReturnTypeHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnFromAndConfigureDynamicCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnFromAndConfigureDynamicCall.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnFromBaseIfRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnFromBaseIfRequired.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnFromCustomHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnFromCustomHandlers.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/ReturnResultForTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/ReturnResultForTypeHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/SetActionForCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/SetActionForCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Handlers/TrackLastCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Handlers/TrackLastCallHandler.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/IRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/IRoute.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/IRouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/IRouteFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/Route.cs -------------------------------------------------------------------------------- /src/NSubstitute/Routing/RouteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Routing/RouteFactory.cs -------------------------------------------------------------------------------- /src/NSubstitute/Substitute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/Substitute.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.Received.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.Received.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.Returns.Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.Returns.Task.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.Returns.ValueTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.Returns.ValueTask.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.Returns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.Returns.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.When.Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.When.Task.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.When.ValueTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.When.ValueTask.cs -------------------------------------------------------------------------------- /src/NSubstitute/SubstituteExtensions.When.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/SubstituteExtensions.When.cs -------------------------------------------------------------------------------- /src/NSubstitute/nsubstitute.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/src/NSubstitute/nsubstitute.snk -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ArgDoFromMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ArgDoFromMatcher.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ArgumentInvocationFromMatchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ArgumentInvocationFromMatchers.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ArgumentMatching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ArgumentMatching.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ArgumentMatchingCompat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ArgumentMatchingCompat.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/AssemblySigningTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/AssemblySigningTest.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/AsyncEventHandlersWithNSubstituteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/AsyncEventHandlersWithNSubstituteTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/ITestInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/ITestInterface.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/TestImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/AsyncEventHandlers/TestImplementation.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/AutoValuesForSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/AutoValuesForSubs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/CallbackCalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/CallbackCalling.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ClearSubstitute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ClearSubstitute.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/CompatArgsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/CompatArgsTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ConcurrencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ConcurrencyTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ConfigurationExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ConfigurationExtensionTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/CustomHandlersSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/CustomHandlersSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/DynamicCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/DynamicCalls.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/EventChecking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/EventChecking.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/EventRaising.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/EventRaising.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ExceptionsWhenCheckingReceivedCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ExceptionsWhenCheckingReceivedCalls.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ExceptionsWhenCheckingSequencesOfCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ExceptionsWhenCheckingSequencesOfCalls.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/ArgMatchingWithNestedSubCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/ArgMatchingWithNestedSubCalls.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/ArgMatchingWithValueTypeArgSpecsForObjectArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/ArgMatchingWithValueTypeArgSpecsForObjectArguments.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/CallingIntoNewSubWithinReturns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/CallingIntoNewSubWithinReturns.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/DisposeWithThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/DisposeWithThreadLocal.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/EqualsBehaviourOnClassSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/EqualsBehaviourOnClassSubs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/ExceptionsThrownFromCustomArgumentMatchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/ExceptionsThrownFromCustomArgumentMatchers.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue110_CustomExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue110_CustomExceptions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue111_ArgMatchesWithRefAndOutParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue111_ArgMatchesWithRefAndOutParams.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue114_ArgumentCheckOfOptionalParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue114_ArgumentCheckOfOptionalParameter.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue118_ConcreteClassWithPublicStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue118_ConcreteClassWithPublicStaticMethod.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue125_MethodWithSealedClassReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue125_MethodWithSealedClassReturnType.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue129_AmbiguousArgsWithOutRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue129_AmbiguousArgsWithOutRef.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue149_ArgMatcherInReturns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue149_ArgMatcherInReturns.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue170_MultidimensionalArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue170_MultidimensionalArray.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue211_ReceivedInOrderParamsFormatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue211_ReceivedInOrderParamsFormatting.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue225_ConfiguredValueIsUsedInSubsequentSetups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue225_ConfiguredValueIsUsedInSubsequentSetups.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue237_ReceivedInOrderErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue237_ReceivedInOrderErrorHandling.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue262_NonPublicSetterCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue262_NonPublicSetterCall.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue271_DelegateOutArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue271_DelegateOutArgument.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue279_ShouldFailOnRedundantArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue279_ShouldFailOnRedundantArguments.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue282_MultipleReturnValuesParallelism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue282_MultipleReturnValuesParallelism.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue291_CannotReconfigureThrowingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue291_CannotReconfigureThrowingConfiguration.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue33_RaisingINotifyPropertyChangedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue33_RaisingINotifyPropertyChangedEvents.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue372_InterfaceSameNameOfMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue372_InterfaceSameNameOfMethods.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue378_InValueTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue378_InValueTypes.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue38_SettingNullReturnValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue38_SettingNullReturnValue.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue423_SetVirtualMembersInConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue423_SetVirtualMembersInConstructor.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue45_CallInfoArgAccessFailsForNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue45_CallInfoArgAccessFailsForNull.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue47_RaisingEventsWithNullArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue47_RaisingEventsWithNullArg.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue500_SpecialMethodsWithoutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue500_SpecialMethodsWithoutAttribute.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue515_OutOfRangeExceptionForNestedGenericTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue515_OutOfRangeExceptionForNestedGenericTypes.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue533_TaskExceptionMightBeSwallowed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue533_TaskExceptionMightBeSwallowed.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue560_RaiseEventWithArrayArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue560_RaiseEventWithArrayArg.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue569_QueryShouldNotInvokeConfiguredResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue569_QueryShouldNotInvokeConfiguredResult.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue577_CannotSetOutValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue577_CannotSetOutValue.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue57_SettingVirtualPropertyInCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue57_SettingVirtualPropertyInCtor.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue59_ArgDoWithReturns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue59_ArgDoWithReturns.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue61_ArgAnyStringRegression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue61_ArgAnyStringRegression.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue631_NamespaceDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue631_NamespaceDelegate.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue75_DoesNotWorkWithMembersThatUseDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue75_DoesNotWorkWithMembersThatUseDynamic.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue77_EqualsBehaviourOnClassStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue77_EqualsBehaviourOnClassStubs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue83_MethodsWithGenericStructConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue83_MethodsWithGenericStructConstraint.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Issue_RaiseEventOnNonSubstitute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Issue_RaiseEventOnNonSubstitute.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/MigratingToCompatArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/MigratingToCompatArgs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/StaticStateBleeding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/StaticStateBleeding.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FieldReports/SubbingSynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FieldReports/SubbingSynchronizationContext.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/FormattingCallsWhenThrowingReceivedCallsExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/FormattingCallsWhenThrowingReceivedCallsExceptions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/GenericArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/GenericArguments.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ILoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ILoggerTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/AnotherClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/AnotherClass.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/BackgroundTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/BackgroundTask.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/FluentSomething.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/FluentSomething.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/IFluentSomething.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/IFluentSomething.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/ISomething.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/ISomething.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/ISomethingWithGenericMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/ISomethingWithGenericMethods.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/PendingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/Infrastructure/PendingAttribute.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/Infrastructure/SomeClass.cs: -------------------------------------------------------------------------------- 1 | namespace NSubstitute.Acceptance.Specs.Infrastructure; 2 | 3 | public class SomeClass 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/MatchingDerivedTypesForGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/MatchingDerivedTypesForGenerics.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/MultipleThreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/MultipleThreads.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/NSubContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/NSubContainerTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/NSubstitute.Acceptance.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/NSubstitute.Acceptance.Specs.csproj -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/NotASubstituteExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/NotASubstituteExceptions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/NullReferenceCheckingForSubstituteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/NullReferenceCheckingForSubstituteExtensions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/OutAndRefParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/OutAndRefParameters.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/PartialSubExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/PartialSubExamples.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/PartialSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/PartialSubs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/PerfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/PerfTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/PropertyBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/PropertyBehaviour.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ProtectedExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ProtectedExtensionsTests.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ProxyIdentification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ProxyIdentification.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ReceivedCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ReceivedCalls.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/RecursiveSubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/RecursiveSubs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ReturningResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ReturningResults.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ReturnsAndDoes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ReturnsAndDoes.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ReturnsForAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ReturnsForAll.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ReturnsForAllFromFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ReturnsForAllFromFunc.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SequenceChecking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SequenceChecking.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SimpleSubstituteExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SimpleSubstituteExamples.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SubbingForConcreteTypesAndMultipleInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SubbingForConcreteTypesAndMultipleInterfaces.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SubbingForEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SubbingForEventHandler.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SubstituteTimingAndInteractions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SubstituteTimingAndInteractions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/SubstitutingForDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/SubstitutingForDelegates.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ThrowingAsyncExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ThrowingAsyncExceptions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/ThrowingExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/ThrowingExceptions.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/TypeForwarding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/TypeForwarding.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Acceptance.Specs/WhenCalledDo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Acceptance.Specs/WhenCalledDo.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/ActivationBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/ActivationBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/ArgumentSpecificationUsageBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/ArgumentSpecificationUsageBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/DispatchConfiguredMatchingCallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/DispatchConfiguredMatchingCallBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/DispatchConfiguredNonMatchingCallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/DispatchConfiguredNonMatchingCallBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/DispatchNonConfiguredCallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/DispatchNonConfiguredCallBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/NSubstitute.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/NSubstitute.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/AbstractClassWithSingleMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/AbstractClassWithSingleMethod.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/ClassWithSingleMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/ClassWithSingleMethod.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/ClassWithToStringImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/ClassWithToStringImplementation.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/Delegates.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/IInterfaceWithMultipleMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/IInterfaceWithMultipleMethods.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/TestTypes/IInterfaceWithSingleMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/TestTypes/IInterfaceWithSingleMethod.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/ToStringCallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/ToStringCallBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Benchmarks/VerifyReceivedCallBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Benchmarks/VerifyReceivedCallBenchmark.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Documentation.Tests.Generator/DocumentationTestsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Documentation.Tests.Generator/DocumentationTestsGenerator.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Documentation.Tests.Generator/NSubstitute.Documentation.Tests.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Documentation.Tests.Generator/NSubstitute.Documentation.Tests.Generator.csproj -------------------------------------------------------------------------------- /tests/NSubstitute.Documentation.Tests/NSubstitute.Documentation.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Documentation.Tests/NSubstitute.Documentation.Tests.csproj -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/AnonymousObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/AnonymousObserver.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ArgumentSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ArgumentSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ArgumentSpecificationFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ArgumentSpecificationFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ArgumentSpecificationSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ArgumentSpecificationSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ArgumentSpecificationsFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ArgumentSpecificationsFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ArrayArgumentSpecificationsFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ArrayArgumentSpecificationsFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ArrayContentsArgumentMatcherSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ArrayContentsArgumentMatcherSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/DefaultCheckerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/DefaultCheckerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/EqualsArgumentMatcherSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/EqualsArgumentMatcherSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ExpressionArgumentMatcherSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ExpressionArgumentMatcherSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/MixedArgumentSpecificationsFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/MixedArgumentSpecificationsFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/NonParamsArgumentSpecificationFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/NonParamsArgumentSpecificationFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ParameterInfosFromParamsArrayFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ParameterInfosFromParamsArrayFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/ParamsArgumentSpecificationFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/ParamsArgumentSpecificationFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/SuppliedArgumentSpecificationsFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/SuppliedArgumentSpecificationsFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Arguments/SuppliedArgumentSpecificationsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Arguments/SuppliedArgumentSpecificationsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallActionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallActionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallBaseExclusionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallBaseExclusionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallCollectionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallCollectionSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallFormatterSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallFormatterSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallInfoFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallInfoFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallInfoSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallInfoSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallResultsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallResultsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallRouterResolverSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallRouterResolverSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallRouterSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallRouterSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallSpecificationFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallSpecificationFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/CallSpecificationSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/CallSpecificationSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ClearSubstituteExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ClearSubstituteExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ConfigureCallSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ConfigureCallSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/DefaultForTypeSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/DefaultForTypeSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/DidNotReceiveExtensionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/DidNotReceiveExtensionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/DidNotReceiveWithAnyArgsExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/DidNotReceiveWithAnyArgsExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/EventHandlerRegistrySpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/EventHandlerRegistrySpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ExceptionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ExceptionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ExtensionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ExtensionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/GetCallSpecSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/GetCallSpecSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/BaseConcern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/BaseConcern.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/ConcernFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/ConcernFor.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/ITemporaryChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/ITemporaryChange.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/MockingAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/MockingAdaptor.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/ReflectionHelper.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/StaticConcern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/StaticConcern.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/TemporaryChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/TemporaryChange.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/TemporaryChangeNotConfiguredProperlyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/TemporaryChangeNotConfiguredProperlyException.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/TemporaryChangeToBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/TemporaryChangeToBuilder.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/TestCallRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/TestCallRouter.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/Tests/BaseConcernSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/Tests/BaseConcernSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Infrastructure/Tests/ReflectionHelperSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Infrastructure/Tests/ReflectionHelperSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/NSubstitute.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/NSubstitute.Specs.csproj -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/PendingSpecificationSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/PendingSpecificationSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/PropertyHelperSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/PropertyHelperSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Proxies/CastleDynamicProxy/CastleDynamicProxyFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Proxies/CastleDynamicProxy/CastleDynamicProxyFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Proxies/DelegateProxy/DelegateProxyFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Proxies/DelegateProxy/DelegateProxyFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Proxies/ProxyFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Proxies/ProxyFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/QuantitySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/QuantitySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReceivedCallsExceptionThrowerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReceivedCallsExceptionThrowerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReceivedCallsExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReceivedCallsExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReceivedExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReceivedExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReceivedWithAnyArgsExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReceivedWithAnyArgsExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReflectionExtensionsSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReflectionExtensionsSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ResultsForTypeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ResultsForTypeSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReturnExtensionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReturnExtensionSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReturnValueFromFuncSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReturnValueFromFuncSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReturnsForAllExtensionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReturnsForAllExtensionSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/ReturnsForAllFuncExtensionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/ReturnsForAllFuncExtensionSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/AutoValues/AutoArrayProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/AutoValues/AutoArrayProviderSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/AutoValues/AutoQueryableProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/AutoValues/AutoQueryableProviderSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/AutoValues/AutoStringProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/AutoValues/AutoStringProviderSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/AutoValues/AutoSubstituteProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/AutoValues/AutoSubstituteProviderSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/AutoValues/AutoTaskProviderSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/AutoValues/AutoTaskProviderSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/AddCallToQueryResultHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/AddCallToQueryResultHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/CheckReceivedCallHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/CheckReceivedCallHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/ClearLastCallRouterHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/ClearLastCallRouterHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/DoActionsCallHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/DoActionsCallHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/EventSubscriptionHandlerSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/EventSubscriptionHandlerSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/PropertySetterHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/PropertySetterHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/RaiseEventHandlerSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/RaiseEventHandlerSpec.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/RecordCallHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/RecordCallHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/ReturnAutoValueSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/ReturnAutoValueSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/ReturnConfiguredResultHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/ReturnConfiguredResultHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/ReturnDefaultForReturnTypeHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/ReturnDefaultForReturnTypeHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/ReturnResultForTypeHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/ReturnResultForTypeHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/Handlers/SetActionsForCallHandlerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/Handlers/SetActionsForCallHandlerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/Routing/RouteSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/Routing/RouteSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SampleStructures/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SampleStructures/Foo.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SampleStructures/IFoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SampleStructures/IFoo.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SequenceChecking/InstanceTrackerSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SequenceChecking/InstanceTrackerSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SubstituteFactorySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SubstituteFactorySpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SubstituteSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SubstituteSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/SubstitutionContextSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/SubstitutionContextSpecs.cs -------------------------------------------------------------------------------- /tests/NSubstitute.Specs/WhenCalledSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsubstitute/NSubstitute/HEAD/tests/NSubstitute.Specs/WhenCalledSpecs.cs --------------------------------------------------------------------------------