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
26 lines
648 B
C#
26 lines
648 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class ScriptMethodsGeneratorTests
|
|
{
|
|
[Fact]
|
|
public async Task Methods()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptMethodsGenerator>.Verify(
|
|
"Methods.cs",
|
|
"Methods_ScriptMethods.generated.cs"
|
|
);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ScriptBoilerplate()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptMethodsGenerator>.Verify(
|
|
"ScriptBoilerplate.cs",
|
|
"ScriptBoilerplate_ScriptMethods.generated.cs", "OuterClass.NestedClass_ScriptMethods.generated.cs"
|
|
);
|
|
}
|
|
}
|