-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUnitTest1.cs
40 lines (36 loc) · 1.18 KB
/
UnitTest1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
namespace SourceGeneration.Reflection.SourceGenerator.Test;
public class List2<T> : List<T> { }
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
string source = @"
//[assembly: SourceReflectionAttribute<SourceGeneration.Reflection.Sample2.EnumTestObject>]
//[assembly: SourceReflectionType(typeof(System.Collections.Generic.List<string>))]
//[assembly: SourceReflectionType<int[]>]
using System;
using System.Threading.Tasks;
using SourceGeneration.Reflection;
namespace SourceGeneration.Reflection.Sample2
{
[SourceReflection]
public class InterfaceImplementTestObject : System.ICloneable, System.IComparable
{
public string Dic;
public int CompareTo(object? obj)
{
throw new NotImplementedException();
}
object System.ICloneable.Clone()
{
throw new NotImplementedException();
}
}}
";
var result = CSharpTestGenerator.Generate<ReflectionSourceGenerator>(source, typeof(SourceReflectionAttribute).Assembly, typeof(UnitTest1).Assembly);
var script = result.RunResult.GeneratedTrees.FirstOrDefault()?.GetText();
var script2 = result.RunResult.GeneratedTrees.LastOrDefault()?.GetText();
}
}