diff --git a/tests/CommandLine.Tests/Fakes/Scalar_String_Mutable.cs b/tests/CommandLine.Tests/Fakes/Scalar_String_Mutable.cs deleted file mode 100644 index abfc7dfb..00000000 --- a/tests/CommandLine.Tests/Fakes/Scalar_String_Mutable.cs +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information. - - -namespace CommandLine.Tests.Properties.Fakes -{ - class Scalar_String_Mutable - { - [Option] - public string StringValue { get; set; } - } -} diff --git a/tests/CommandLine.Tests/ParserProperties.cs b/tests/CommandLine.Tests/ParserProperties.cs deleted file mode 100644 index ae55d18c..00000000 --- a/tests/CommandLine.Tests/ParserProperties.cs +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information. - -using CommandLine.Tests.Properties.Fakes; -using FluentAssertions; -using FsCheck; -using Xunit; - -namespace CommandLine.Tests.Properties -{ - public class ParserProperties - { - private static readonly Parser Sut = new Parser(); - - //[Fact] - public void Parsing_a_string_returns_original_string() - { - Prop.ForAll>( - x => - { - var value = x.Get; - var result = Sut.ParseArguments(new[] { "--stringvalue", value }); - ((Parsed)result).Value.StringValue.Should().BeEquivalentTo(value); - }).QuickCheckThrowOnFailure(); - } - } -}