You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix issues Update System.Security.Cryptography.Pkcs again Downgrade Microsoft.CodeAnalysis.CSharp.Workspaces
17 lines
388 B
C#
17 lines
388 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class NestedInGenericTest
|
|
{
|
|
[Fact]
|
|
public async Task GenerateScriptMethodsTest()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptMethodsGenerator>.Verify(
|
|
"NestedInGeneric.cs",
|
|
"GenericClass(Of T).NestedClass_ScriptMethods.generated.cs"
|
|
);
|
|
}
|
|
}
|