1234567891011121314151617 |
- using System.Reflection;
- using Xunit.Runners.UI;
- namespace Tests.Reactive.Uwp.DeviceRunner
- {
- public sealed partial class App : RunnerApplication
- {
- protected override void OnInitializeRunner()
- {
- // tests can be inside the main assembly
- AddTestAssembly(GetType().GetTypeInfo().Assembly);
- // otherwise you need to ensure that the test assemblies will
- // become part of the app bundle
- // AddTestAssembly(typeof(PortableTests).GetTypeInfo().Assembly);
- }
- }
- }
|