public void t_Unit()
        {
            IntegerQuantity target   = new IntegerQuantity();
            string          expected = "meters";
            string          actual;

            target.Unit = expected;
            actual      = target.Unit;
            Assert.AreEqual(expected, actual);
        }
        public void t_Value()
        {
            IntegerQuantity target   = new IntegerQuantity();
            int             expected = 34;

            int actual;

            target.Value = expected;
            actual       = target.Value;
            Assert.AreEqual(expected, actual);
        }
        public void t_IntegerQuantityConstructor()
        {
            IntegerQuantity target = new IntegerQuantity();

            Assert.IsNotNull(target);
        }