Esempio n. 1
0
        /// <summary>
        ///     Mark paragraphs that are implemented, but where there is no test to validate this implementation
        /// </summary>
        public void CheckNotTestedWithFunctionalTests()
        {
            NotTestedWithFunctionalTestVisitor visitor = new NotTestedWithFunctionalTestVisitor(this);

            visitor.visit(this);
        }
 /// <summary>
 ///     Mark paragraphs that are implemented, but where there is no test to validate this implementation
 /// </summary>
 public void CheckNotTestedWithFunctionalTests()
 {
     NotTestedWithFunctionalTestVisitor visitor = new NotTestedWithFunctionalTestVisitor(this);
     visitor.visit(this);
 }