mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
15 lines
365 B
C#
15 lines
365 B
C#
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class KeywordClassAndNamespaceTest
|
|
{
|
|
[Fact]
|
|
public async void GenerateScriptMethodsTest()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptMethodsGenerator>.Verify(
|
|
"KeywordClassNameAndNamespace.cs",
|
|
"namespace.class_ScriptMethods.generated.cs"
|
|
);
|
|
}
|
|
}
|