Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
Remove code that's in base class
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed May 30, 2018
1 parent 41492de commit edb3310
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions templates/xunit.uwp.template/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,5 @@ protected override void OnInitializeRunner()
{
AddTestAssembly(typeof(App).GetTypeInfo().Assembly);
}

protected override void OnLaunched(LaunchActivatedEventArgs e)
{
// Start the test runner if we have args
if (!string.IsNullOrWhiteSpace(e.Arguments))
{
Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.CreateDefaultUI();
// Ensure the current window is active
Window.Current.Activate();

Microsoft.VisualStudio.TestPlatform.TestExecutor.UnitTestClient.Run(e.Arguments);
}
else
{
base.OnLaunched(e);
}
}
}
}

0 comments on commit edb3310

Please sign in to comment.