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
475 B
C#
17 lines
475 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class ScriptSerializationGeneratorTests
|
|
{
|
|
[Fact]
|
|
public async Task ScriptBoilerplate()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptSerializationGenerator>.VerifyNoCompilerDiagnostics(
|
|
"ScriptBoilerplate.cs",
|
|
"ScriptBoilerplate_ScriptSerialization.generated.cs", "OuterClass.NestedClass_ScriptSerialization.generated.cs"
|
|
);
|
|
}
|
|
}
|