public void TestRCPRDSSeriesDefinition()
        {
            TestCaseExternalID = "CGN-93";
            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.EnableRepeatingDefectDetection(true);
            RepeatingDefectSetup.SetSeriesDefinition("255.00", "113000.00", "3", "5");
            RepeatingDefectSetup.ApplySettings();

            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.VerifySeriesDefinitionParametes("255.000", "113000.000", "3", "5");
            RepeatingDefectSetup.ApplySettings();
        }
        public void TestRCPRDSVariationWithinSeries()
        {
            TestCaseExternalID = "CGN-95";
            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.EnableRepeatingDefectDetection(true);
            RepeatingDefectSetup.SetVariationWithinSeries("5.00", "8.00", "6", "11");
            RepeatingDefectSetup.ApplySettings();

            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.VerifyVariationWithinSeries("5.000", "8.000", "6.000", "11.");
            RepeatingDefectSetup.ApplySettings();
        }
        public void TestRCPRDSEnableRepeatingDefectDetection()
        {
            TestCaseExternalID = "CGN-94";
            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.EnableRepeatingDefectDetection(true);
            RepeatingDefectSetup.ApplySettings();
            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.VerifyRepeatingDefectDetectionStatus(true);

            RepeatingDefectSetup.EnableRepeatingDefectDetection(false);
            RepeatingDefectSetup.ApplySettings();
            RepeatingDefectSetup.LoadRepeatingDefectSetup("test", "view 1");
            RepeatingDefectSetup.VerifyRepeatingDefectDetectionStatus(false);
            RepeatingDefectSetup.ApplySettings();
        }