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