You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix issues Update System.Security.Cryptography.Pkcs again Downgrade Microsoft.CodeAnalysis.CSharp.Workspaces
22 lines
597 B
C#
22 lines
597 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Godot.SourceGenerators.Tests;
|
|
|
|
public class GlobalClassAnalyzerTests
|
|
{
|
|
[Fact]
|
|
public async Task GlobalClassMustDeriveFromGodotObjectTest()
|
|
{
|
|
const string GlobalClassGD0401 = "GlobalClass.GD0401.cs";
|
|
await CSharpAnalyzerVerifier<GlobalClassAnalyzer>.Verify(GlobalClassGD0401);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GlobalClassMustNotBeGenericTest()
|
|
{
|
|
const string GlobalClassGD0402 = "GlobalClass.GD0402.cs";
|
|
await CSharpAnalyzerVerifier<GlobalClassAnalyzer>.Verify(GlobalClassGD0402);
|
|
}
|
|
}
|