コード例 #1
0
ファイル: IsNotBinaryTests.cs プロジェクト: tuga1975/Warewolf
        public void IsNotBinary_HandlesType_ReturnsIsEndsWithType()
        {
            var expected = enDecisionType.IsNotBinary;
            //------------Setup for test--------------------------
            var isEndsWith = new IsNotBinary();

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