コード例 #1
0
        public void FixedLengthDecimalField_ValueInStringShouldBeParsedIntoFixedLengthFieldSuccessfully()
        {
            var field = new FixedLengthDecimalField("Height", 3);

            field.RawString = "9.1";
            Assert.AreEqual(9.1M, field.Value);
        }
コード例 #2
0
        public void FixedLengthDecimalField_ShouldReturnDecimalValue()
        {
            int i     = 9;
            var field = new FixedLengthDecimalField("Height", 3);

            field.Value = i;
            if (field.Value.GetType() != typeof(decimal))
            {
                Assert.Fail("Return value of decimal-type FixedLengthField is not decimal.");
            }
        }