Ejemplo n.º 1
0
        public void Parse_ParameterWithMoreThanOneSeparator_ThrowException()
        {
            // Arrange
            var parameterWithMoreThanOneSeparator = "one=flag=true";

            // Act
            Action action = () => ExecutionParameters.Parse(parameterWithMoreThanOneSeparator);

            // Assert
            action.Should().Throw <ArgumentException>();
        }