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