Exemplo n.º 1
0
 public UnitTestApplication(TestServices services)
 {
     Services = services ?? new TestServices();
     RegisterServices();
     Styles = Services.Theme?.Invoke();
 }
Exemplo n.º 2
0
 public static IDisposable Start(TestServices services = null)
 {
     var scope = PerspexLocator.EnterScope();
     var app = new UnitTestApplication(services);
     return scope;
 }
Exemplo n.º 3
0
 public UnitTestApplication(TestServices services)
 {
     Services = services ?? new TestServices();
     RegisterServices();
     Styles = Services.Theme?.Invoke();
 }