Esempio n. 1
0
 protected UITestBase(TestApplicationType appType)
 {
     ApplicationType = appType;
     ScreenshotDir   = @"c:\FailedTestsScreenshots";
     _wasTestRun     = false;
     Uia3Automation  = new UIA3Automation();
 }
Esempio n. 2
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
     ScreenshotDir   = @"c:\FailedTestsScreenshots";
     _wasTestRun     = false;
     Automation      = TestUtilities.GetAutomation(automationType);
 }
Esempio n. 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();
 }
Esempio n. 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();
 }
Esempio n. 5
0
 public ListViewTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 6
0
 public GridTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public WindowTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 8
0
 public ComboBoxTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 9
0
 public SliderTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 10
0
 public ValueConverterTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 11
0
 public CalendarTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 12
0
 public TreeTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 13
0
 public ProgressBarTests(TestApplicationType appType) : base(appType)
 {
 }
Esempio n. 14
0
 public XPathTests2(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 15
0
 public ExpandCollapsePatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 16
0
 public SliderTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 17
0
 public RangeValuePatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 18
0
 public MenuTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 19
0
 public CheckBoxTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 20
0
 public LabelTests(TestApplicationType appType)
     : base(appType)
 {
 }
Esempio n. 21
0
 public DateTimePickerTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public ProgressBarTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 23
0
 public InvokePatternTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 24
0
 public RadioButtonTests(TestApplicationType appType) : base(appType)
 {
 }
Esempio n. 25
0
 public RadioButtonTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 26
0
 public AutomationElementTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
 public TextBoxTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 28
0
 public ScrollItemPatternTests(AutomationType automationType, TestApplicationType appType) : base(automationType, appType)
 {
 }
Esempio n. 29
0
 public DataGridViewTests(AutomationType automationType, TestApplicationType appType)
     : base(automationType, appType)
 {
 }
Esempio n. 30
0
 protected UITestBase(AutomationType automationType, TestApplicationType appType)
 {
     AutomationType  = automationType;
     ApplicationType = appType;
 }