Tests.MainActivity.OnCreate C# (CSharp) Method

OnCreate() protected method

protected OnCreate ( Bundle bundle ) : void
bundle Bundle
return void
        protected override void OnCreate (Bundle bundle)
        {
            // tests can be inside the main assembly
            //AddTest (Assembly.GetExecutingAssembly ());
            // or in any reference assemblies
            AddTest (typeof(TestBase).Assembly);

            // Once you called base.OnCreate(), you cannot add more assemblies.
            base.OnCreate (bundle);
        }
    }
MainActivity