示例#1
0
        public void FilmingWindowLevelConstructorTest()
        {
            FilmingWindowLevel target = new FilmingWindowLevel();

            //Assert.Inconclusive("TODO: Implement code to verify target");
            Assert.AreEqual(string.Empty, target.Name);
            Assert.AreEqual(0, target.Center);
            Assert.AreEqual(0, target.Width);
        }
示例#2
0
        public void ToStringTest()
        {
            FilmingWindowLevel target   = new FilmingWindowLevel(); //
            string             expected = string.Empty;             //
            string             actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#3
0
        public void WidthTest()
        {
            FilmingWindowLevel target   = new FilmingWindowLevel(); //
            double             expected = 0F;                       //
            double             actual;

            target.Width = expected;
            actual       = target.Width;
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }