Example #1
0
        public void AbsoluteValueOfNullReferenceThrowsException()
        {
            IQuantity quantity = null;

            Assert.Throws <NullReferenceException>(() => quantity.Abs());
        }