Пример #1
0
        public void StatusTest()
        {
            IProgressStatus target        = new MWProgressStatus(); // TODO: Initialize to an appropriate value
            string          StatusMessage = string.Empty;           // TODO: Initialize to an appropriate value

            target.Status(StatusMessage);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #2
0
        public void ProgressTest()
        {
            IProgressStatus target          = new MWProgressStatus(); // TODO: Initialize to an appropriate value
            int             CurrentPosition = 0;                      // TODO: Initialize to an appropriate value
            int             LastPosition    = 0;                      // TODO: Initialize to an appropriate value

            target.Progress(CurrentPosition, LastPosition);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #3
0
        public void MWProgressStatusConstructorTest()
        {
            MWProgressStatus target = new MWProgressStatus();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }