public void TearDown()
 {
     m_Presenter.Stop();
     m_View      = null;
     m_Model     = null;
     m_Presenter = null;
 }
예제 #2
0
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            AppCenter.Start("dfaba3e4-1876-4b13-b2dc-bad81b1c64f5",
                            typeof(Analytics), typeof(Crashes), typeof(Push));

            _presenter = new StartPresenter(this);

            StartNextActivity();
        }
 public void Setup()
 {
     m_View      = new TestStartView();
     m_Model     = new TestStartModel();;
     m_Presenter = new StartPresenter(m_View, m_Model);
 }