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:
parent
1312272184
commit
7c6c2f20e6
7 changed files with 3676 additions and 0 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue