예제 #1
0
        public void GetWidth_input3_expectedLengthEquals3()
        {
            //Arrange
            int       l             = 4;
            int       w             = 3;
            Rectclass testRectangle = new Rectclass(l, w);

            //Act
            int width = testRectangle.GetWidth();

            //Assert
            Assert.AreEqual(w, width);
        }