You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix issues Update System.Security.Cryptography.Pkcs again Downgrade Microsoft.CodeAnalysis.CSharp.Workspaces
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class ScriptPropertyDefValGeneratorTests
|
|
{
|
|
[Fact]
|
|
public async Task ExportedFields()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
|
new string[] { "ExportedFields.cs", "MoreExportedFields.cs" },
|
|
new string[] { "ExportedFields_ScriptPropertyDefVal.generated.cs" }
|
|
);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ExportedProperties()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
|
"ExportedProperties.cs",
|
|
"ExportedProperties_ScriptPropertyDefVal.generated.cs"
|
|
);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ExportedProperties2()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
|
"ExportedProperties2.cs", "ExportedProperties2_ScriptPropertyDefVal.generated.cs");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task ExportedComplexStrings()
|
|
{
|
|
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
|
"ExportedComplexStrings.cs",
|
|
"ExportedComplexStrings_ScriptPropertyDefVal.generated.cs"
|
|
);
|
|
}
|
|
}
|