18 lines
No EOL
376 B
C#
18 lines
No EOL
376 B
C#
using System.Linq;
|
|
|
|
namespace ModuleTests.Git.TestData;
|
|
|
|
public class AddRegistrationTestData : TestDataEnumerator<(int testId, string path)>
|
|
{
|
|
public AddRegistrationTestData()
|
|
{
|
|
Data = new List<string>()
|
|
{
|
|
"test",
|
|
$"test{Path.DirectorySeparatorChar}path",
|
|
$"other{Path.AltDirectorySeparatorChar}path"
|
|
}
|
|
.Select((x, i) => (i, x))
|
|
.ToList();
|
|
}
|
|
} |