Add unit test for generic class + change generated filename (#50)

This commit is contained in:
Stef Heyenrath
2023-01-08 09:10:17 +01:00
committed by GitHub
parent 0df5944d06
commit d25601cf22
7 changed files with 139 additions and 6 deletions
@@ -0,0 +1,10 @@
namespace ProxyInterfaceSourceGeneratorTests.Source
{
public class Generic<T>
{
public T Test(T value)
{
return value;
}
}
}
@@ -0,0 +1,6 @@
namespace ProxyInterfaceSourceGeneratorTests.Source
{
public partial interface IGeneric
{
}
}