Esempio n. 1
0
        public void CorrectData(int width, int height, string toString)
        {
            GraphSizes testObject = new GraphSizes(width, height);

            Assert.Equal(width, testObject.Width);
            Assert.Equal(height, testObject.Height);
            Assert.Equal(toString, testObject.ToString());
        }