Measure Response Times

Learn how to measure text execution times using BELLATRIX Android module.

Example

using Bellatrix.TestExecutionExtensions.Common.ExecutionTime;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Bellatrix.Mobile.Android.GettingStarted
{
    [TestFixture]
    [ExecutionTimeUnder(2000, TimeUnit.Milliseconds)]
    public class MeasureTestExecutionTimesTests : AndroidTest
    {
        [Test]
        public void ButtonClicked_When_CallClickMethod()
        {
            var button = App.Components.CreateByIdContaining<Button>("button");

            button.Click();
        }
    }
}

Explanations

[TestFixture]
[ExecutionTimeUnder(2000, TimeUnit.Milliseconds)]
public class MeasureTestExecutionTimesTests : AndroidTest

Sometimes it is useful to use your functional tests to measure performance. Or to just make sure that your app is not slow. To do that BELLATRIX libraries offer the ExecutionTimeUnder attribute. You specify a timeout and if the test is executed over it the test will fail.

using Bellatrix.TestExecutionExtensions.Common.ExecutionTime;

You need to add the NuGet package- Bellatrix.TestExecutionExtensions.Common. After that you need to add a using statement to Bellatrix.TestExecutionExtensions.Common.ExecutionTime