ExecuteAllTestsAsync() 공개 메소드

public ExecuteAllTestsAsync ( ) : Task
리턴 Task
예제 #1
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            // Get our button from the layout resource,
            // and attach an event to it
            Button button = FindViewById<Button>(Resource.Id.MyButton);
            //button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
            button.Click += OnClick;
            var txtBox = FindViewById<TextView>(Resource.Id.TestOutput);

            txtBox.Text = "Executing tests...";
            try
            {
                runner = new AndroidRunner(txtBox, RunOnUiThread);
                runner.ExecuteAllTestsAsync();
            }
            catch(Exception e)
            {
                txtBox.Text = e.ToString();
            }
        }
예제 #2
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            // Get our button from the layout resource,
            // and attach an event to it
            Button button = FindViewById<Button>(Resource.Id.MyButton);
            //button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
            button.Click += OnClick;
            var txtBox = FindViewById<TextView>(Resource.Id.TestOutput);
            txtBox.MovementMethod = new ScrollingMovementMethod();

            var stream = Assets.Open(CredentialsAsset);
            txtBox.Text = "Executing tests...";
            runner = new AndroidRunner(stream, txtBox, RunOnUiThread);
            runner.ExecuteAllTestsAsync();
        }