mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
18 lines
No EOL
331 B
C#
18 lines
No EOL
331 B
C#
using Xunit;
|
|
|
|
namespace LibHac.Tests.Common;
|
|
|
|
public static class TheoryDataCreator
|
|
{
|
|
public static TheoryData<int> CreateSequence(int start, int count)
|
|
{
|
|
var data = new TheoryData<int>();
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
data.Add(start + i);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
} |