IsDefaultIdentifier() public method

public IsDefaultIdentifier ( object identifier ) : bool
identifier object
return bool
        public void IsDefaultIdentifierThrowsNotSupportedException()
        {
            var objectInfo = new TupleObjectInfo();

            var exception = Assert.Throws<NotSupportedException>(
                () => objectInfo.IsDefaultIdentifier(0));

            Assert.Equal(exception.Message, ExceptionMessages.TupleObjectInfo_NotSupportedReason);
        }