Fluent Assertions Documentation
FluentAssertions.Equivalency Namespace / EqualityStrategy Enumeration
In This Topic
    EqualityStrategy Enumeration
    In This Topic
    Syntax
    public enum EqualityStrategy : System.Enum 
    Members
    MemberValueDescription
    Equals0The object overrides System.Object.Equals(System.Object), so use that.
    ForceEquals2Compare using System.Object.Equals(System.Object), whether or not the object overrides it.
    ForceMembers3Compare the members, regardless of an System.Object.Equals(System.Object) override exists or not.
    Members1The object does not seem to override System.Object.Equals(System.Object), so compare by members
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             FluentAssertions.Equivalency.EqualityStrategy

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also