Simplify Reverse (C#) folder structure

This commit is contained in:
Zev Spitz
2022-01-17 08:34:09 +02:00
parent 83c053fbd1
commit 2028e95764
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using FsCheck;
namespace Reverse.Tests.Generators
{
public static class PositiveIntegerGenerator
{
public static Arbitrary<int> Generate() =>
Arb.Default.Int32().Filter(x => x > 0);
}
}