public void ParameterNamesDefinedCorrect()
        {
            // Fixture setup

            // Exercise system and verify outcome
            ComputerName.Name.Should().Be("ComputerName");
            ComputerName.ConvertFromString("string").As <string>().Should().Be("string");

            Command.Name.Should().Be("Command");
            Command.ConvertFromString("string").As <string>().Should().Be("string");
        }