Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void ItCanExhaust([Seed] int seed, [Size] int size)

test.Should().Throw<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}
}

Expand All @@ -43,7 +43,7 @@ public void ItCanExhaustAsync([Seed] int seed, [Size] int size)

await test.Should().ThrowAsync<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void ItExhaustsWhenGenerationIsImpossible([Seed] int seed, [Size] int siz
test.Should().Throw<GalaxyCheck.Exceptions.GenExhaustionException>();

},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}

[Property(Iterations = 1)]
Expand All @@ -41,7 +41,7 @@ public void ItExhaustsWhenPreconditionIsImpossible([Seed] int seed, [Size] int s

test.Should().Throw<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}
}

Expand All @@ -60,7 +60,7 @@ public void ItExhaustsWhenGenerationIsImpossible([Seed] int seed, [Size] int siz
await test.Should().ThrowAsync<GalaxyCheck.Exceptions.GenExhaustionException>();

},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}

[Property(Iterations = 1)]
Expand All @@ -79,7 +79,7 @@ public void ItExhaustsWhenPreconditionIsImpossible([Seed] int seed, [Size] int s

await test.Should().ThrowAsync<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void ItCanExhaust([Seed] int seed, [Size] int size)

test.Should().Throw<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}
}

Expand All @@ -43,7 +43,7 @@ public void ItCanExhaustAsync([Seed] int seed, [Size] int size)

await test.Should().ThrowAsync<GalaxyCheck.Exceptions.GenExhaustionException>();
},
TimeSpan.FromSeconds(20));
TimeSpan.FromSeconds(60));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<NuspecFile>GalaxyCheck.Xunit.CodeAnalysis.nuspec</NuspecFile>
<NuspecProperties>PackageVersion=$(PackageVersion)</NuspecProperties>
<NuspecBasePath></NuspecBasePath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<developmentDependency>true</developmentDependency>
</metadata>
<files>
<file src="bin\Release\net6.0\GalaxyCheck.Xunit.CodeAnalysis.pdb" target="lib" />
<file src="bin\Release\net6.0\*.dll" target="analyzers\dotnet\cs" exclude="**\Microsoft.CodeAnalysis.*;**\System.Collections.Immutable.*;**\System.Reflection.Metadata.*;**\System.Composition.*" />
<file src="bin\Release\netstandard2.0\GalaxyCheck.Xunit.CodeAnalysis.pdb" target="lib" />
<file src="bin\Release\netstandard2.0\*.dll" target="analyzers\dotnet\cs" exclude="**\Microsoft.CodeAnalysis.*;**\System.Collections.Immutable.*;**\System.Reflection.Metadata.*;**\System.Composition.*" />
<file src="tools\*.ps1" target="tools\" />
</files>
</package>
2 changes: 1 addition & 1 deletion src/GalaxyCheck.Xunit/GalaxyCheck.Xunit.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<license type="expression">MIT</license>
<tags>GalaxyCheck;Property-Based Testing;Test Framework;Xunit</tags>
<dependencies>
<group targetFramework=".NETStandard2.0">
<group targetFramework="net6.0">
<dependency id="xunit.extensibility.execution" version="2.4.1" exclude="Build,Analyzers" />
<dependency id="GalaxyCheck" version="$PackageVersion$" exclude="Build,Analyzers" />
<dependency id="GalaxyCheck.Xunit.CodeAnalysis" version="$PackageVersion$" />
Expand Down