AutoMoq.Unity.AutoMockingBuilderStrategy.AMockObjectShouldBeCreatedForThisType C# (CSharp) Метод

AMockObjectShouldBeCreatedForThisType() приватный Метод

private AMockObjectShouldBeCreatedForThisType ( Type type ) : bool
type System.Type
Результат bool
        private bool AMockObjectShouldBeCreatedForThisType(Type type)
        {
            return ThisTypeIsNotAFunction(type) &&
                   ThisTypeIsNotRegistered(type) &&
                   ThisIsNotTheTypeThatIsBeingResolvedForTesting(type);
        }