public void IsHex_HandlesType_ReturnsIsEndsWithType()
        {
            var expected = enDecisionType.IsNotHex;
            //------------Setup for test--------------------------
            var isEndsWith = new IsNotHex();

            //------------Execute Test---------------------------
            //------------Assert Results-------------------------
            Assert.AreEqual(expected, isEndsWith.HandlesType());
        }