Example #1
0
 protected UITestBase(TestApplicationType appType)
 {
     ApplicationType = appType;
     ScreenshotDir   = @"c:\FailedTestsScreenshots";
     _wasTestRun     = false;
     Uia3Automation  = new UIA3Automation();
 }
Example #2
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
     ScreenshotDir   = @"c:\FailedTestsScreenshots";
     _wasTestRun     = false;
     Automation      = TestUtilities.GetAutomation(automationType);
 }
Example #3
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
     ScreenshotDir   = @"c:\FailedTestsScreenshots";
     _wasTestRun     = false;
     Automation      = AutomationType == AutomationType.UIA2 ? (AutomationBase) new UIA2Automation() : new UIA3Automation();
 }
Example #4
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
     FailedTestsData = @"c:\FailedTestsData";
     _wasTestRun     = false;
     Automation      = TestUtilities.GetAutomation(automationType);
     Logger.Default  = new NUnitProgressLogger();
 }
Example #5
0
 public ListViewTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #6
0
 public GridTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public WindowTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #8
0
 public ComboBoxTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #9
0
 public SliderTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #10
0
 public ValueConverterTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #11
0
 public CalendarTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #12
0
 public TreeTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #13
0
 public ProgressBarTests(TestApplicationType appType) : base(appType)
 {
 }
Example #14
0
 public XPathTests2(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #15
0
 public ExpandCollapsePatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
 public SliderTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #17
0
 public RangeValuePatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #18
0
 public MenuTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #19
0
 public CheckBoxTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #20
0
 public LabelTests(TestApplicationType appType)
     : base(appType)
 {
 }
Example #21
0
 public DateTimePickerTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public ProgressBarTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #23
0
 public InvokePatternTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #24
0
 public RadioButtonTests(TestApplicationType appType) : base(appType)
 {
 }
Example #25
0
 public RadioButtonTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #26
0
 public AutomationElementTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public TextBoxTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #28
0
 public ScrollItemPatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Example #29
0
 public DataGridViewTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Example #30
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
 }