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
395 B
C#
17 lines
395 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class KeywordClassAndNamespaceTest
|
|
{
|
|
[Fact]
|
|
public async Task GenerateScriptMethodsTest()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptMethodsGenerator>.Verify(
|
|
"KeywordClassNameAndNamespace.cs",
|
|
"namespace.class_ScriptMethods.generated.cs"
|
|
);
|
|
}
|
|
}
|