Andr.Unit.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());

			Runner.Writer = new TcpTextWriter("10.0.1.2", 16384);
			Runner.TerminateAfterExecution = true;

			// you cannot add more assemblies once calling base
			base.OnCreate(bundle);
		}
	}
MainActivity