Class capable of configuring a set of search properties with information about automation ids.
Inheritance: CUITe.SearchConfigurations.SearchConfigurator
        public void ConfigureStrict()
        {
            // Arrange
            var configurator = new AutomationIdConfigurator("SomeId", PropertyExpressionOperator.EqualTo);
            var searchProperties = new PropertyExpressionCollection();

            // Act
            configurator.Configure(searchProperties);

            // Assert
            Assert.AreEqual(1, searchProperties.Count);
            Assert.AreEqual("SomeId", searchProperties.Find("AutomationId").PropertyValue);
            Assert.AreEqual(PropertyExpressionOperator.EqualTo, searchProperties.Find("AutomationId").PropertyOperator);
        }