mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
Simplify Reverse (C#) folder structure
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user