Machine.Specifications.Explorers.AssemblyExplorer.HasSpecificationMembers C# (CSharp) Method

HasSpecificationMembers() static private method

static private HasSpecificationMembers ( Type type ) : bool
type System.Type
return bool
        static bool HasSpecificationMembers(Type type)
        {
            return !type.GetTypeInfo().IsAbstract && type.GetInstanceFieldsOfUsage(new AssertDelegateAttributeFullName(), new BehaviorDelegateAttributeFullName()).Any();
        }