Class EqualDateTimeOffsetConstraint
EqualConstraint is able to compare an actual value with the expected value provided in its constructor. Two objects are considered equal if both are null, or if both have the same value. NUnit has special semantics for some object types.
Inherited Members
Namespace: NUnit.Framework.Constraints
Assembly: nunit.framework.dll
Syntax
public class EqualDateTimeOffsetConstraint : EqualTimeBaseConstraint<DateTimeOffset>, IConstraint, IResolveConstraint
Constructors
View SourceEqualDateTimeOffsetConstraint(DateTimeOffset)
Initializes a new instance of the EqualConstraint class.
Declaration
public EqualDateTimeOffsetConstraint(DateTimeOffset expected)
Parameters
Type | Name | Description |
---|---|---|
DateTimeOffset | expected | The expected value. |
Properties
View SourceWithSameOffset
Flags the constraint to include Offset property in comparison of two DateTimeOffset values.
Declaration
public EqualDateTimeOffsetConstraintWithSameOffset WithSameOffset { get; }
Property Value
Type | Description |
---|---|
EqualDateTimeOffsetConstraintWithSameOffset |
Remarks
Using this modifier does not allow to use the Within(object) constraint modifier.