summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs')
-rw-r--r--modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs
index 6425c723dd..fe511d67ef 100644
--- a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs
+++ b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ExportDiagnosticsTests.cs
@@ -74,4 +74,31 @@ public class ExportDiagnosticsTests
}
);
}
+
+ [Fact]
+ public async void ExportToolButtonInNonToolClass()
+ {
+ await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
+ new string[] { "ExportDiagnostics_GD0108.cs" },
+ new string[] { "ExportDiagnostics_GD0108_ScriptProperties.generated.cs" }
+ );
+ }
+
+ [Fact]
+ public async void ExportAndExportToolButtonOnSameMember()
+ {
+ await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
+ new string[] { "ExportDiagnostics_GD0109.cs" },
+ new string[] { "ExportDiagnostics_GD0109_ScriptProperties.generated.cs" }
+ );
+ }
+
+ [Fact]
+ public async void ExportToolButtonOnNonCallable()
+ {
+ await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
+ new string[] { "ExportDiagnostics_GD0110.cs" },
+ new string[] { "ExportDiagnostics_GD0110_ScriptProperties.generated.cs" }
+ );
+ }
}