1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-06 09:10:50 +01:00
bitwarden-mobile/test/Android.Test/MainActivity.cs
2016-08-01 21:49:32 -04:00

24 lines
686 B
C#

using System.Reflection;
using Android.App;
using Android.OS;
using Xamarin.Android.NUnitLite;
namespace Android.Test
{
[Activity(Label = "Android.Test", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : TestSuiteActivity
{
protected override void OnCreate(Bundle bundle)
{
// tests can be inside the main assembly
AddTest(Assembly.GetExecutingAssembly());
// or in any reference assemblies
// AddTest (typeof (Your.Library.TestClass).Assembly);
// Once you called base.OnCreate(), you cannot add more assemblies.
base.OnCreate(bundle);
}
}
}