App.xaml.cs 554 B

1234567891011121314151617
  1. using System.Reflection;
  2. using Xunit.Runners.UI;
  3. namespace Tests.Reactive.Uwp.DeviceRunner
  4. {
  5. public sealed partial class App : RunnerApplication
  6. {
  7. protected override void OnInitializeRunner()
  8. {
  9. // tests can be inside the main assembly
  10. AddTestAssembly(GetType().GetTypeInfo().Assembly);
  11. // otherwise you need to ensure that the test assemblies will
  12. // become part of the app bundle
  13. // AddTestAssembly(typeof(PortableTests).GetTypeInfo().Assembly);
  14. }
  15. }
  16. }