diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-19 15:20:07 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-19 15:20:07 -0600 |
commit | ec7fd4f6f1265db6c96369c8d70c67273184ca6b (patch) | |
tree | ca8dea62f84a1edd41a2d1e3d44c32d9a0047896 /modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs | |
parent | 63a408f320717d90dc2f623341f2f470e068389f (diff) | |
parent | 4f52c2bb1f76cdfb879a91e55e9a1c50a2ab0afb (diff) | |
download | redot-engine-ec7fd4f6f1265db6c96369c8d70c67273184ca6b.tar.gz |
Merge pull request #97894 from paulloz/dotnet/export-tool-button
Implement `[ExportToolButton]`
Diffstat (limited to 'modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs')
-rw-r--r-- | modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs index 724fb164e0..9693cba9ce 100644 --- a/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs +++ b/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/ScriptPropertiesGeneratorTests.cs @@ -66,4 +66,13 @@ public class ScriptPropertiesGeneratorTests "AbstractGenericNode(Of T)_ScriptProperties.generated.cs" ); } + + [Fact] + public async void ExportedButtons() + { + await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify( + "ExportedToolButtons.cs", + "ExportedToolButtons_ScriptProperties.generated.cs" + ); + } } |