public WindowTestEnvironment(WindowTestContext context) 
 {
     _WindowTestContext = context;
 }
 public WindowTestEnvironment(WindowTestContext context)
 {
     _WindowTestContext = context;
 }
Beispiel #3
0
 public WindowTest(WindowTestContext context, Action <System.Windows.Window> init)
 {
     _WindowTestEnvironment = new WindowTestEnvironment(context);
     _WPFThreadingHelper    = _WindowTestEnvironment.GetWindowWrapper(() => CreateNewWindow(init));
 }