public void FromAutomationId(int numberOfOptions, string automationId, DialogResult expected)
        {
            var result = DialogResultMapper.FromAutomationId(numberOfOptions, automationId);

            result.Should().Be(expected);
        }
        public void ToAutomationId(int numberOfOptions, string expected, DialogResult result)
        {
            var automationId = DialogResultMapper.ToAutomationId(numberOfOptions, result);

            automationId.Should().Be(expected);
        }