1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00

Added Linq to automated tests

This commit is contained in:
Brian Fiete 2021-06-28 11:43:24 -07:00
parent 1312272184
commit 7c6c2f20e6
7 changed files with 3676 additions and 0 deletions

View file

@ -296,6 +296,18 @@ namespace Tests
}
public static void TestGen<T, TItem>(T val)
where T : IEnumerable<TItem>
where TItem : var
{
}
public static void TestPreGen<T>()
{
List<int> a = default;
TestGen(a);
}
[Test]
public static void TestBasics()
{