mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
provide analyser corresponding to the GD0001 and GD0002, add ClassPartialModifierAnalyzerFix, and tests
Co-authored-by: Raul Santos <raulsntos@gmail.com> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
parent
0246230e2b
commit
00dc19585b
15 changed files with 230 additions and 76 deletions
|
|
@ -0,0 +1,20 @@
|
|||
using System.Threading.Tasks;
|
||||
using Xunit;
|
||||
|
||||
namespace Godot.SourceGenerators.Tests;
|
||||
|
||||
public class ClassPartialModifierTest
|
||||
{
|
||||
[Fact]
|
||||
public async Task ClassPartialModifierCodeFixTest()
|
||||
{
|
||||
await CSharpCodeFixVerifier<ClassPartialModifierCodeFixProvider, ClassPartialModifierAnalyzer>
|
||||
.Verify("ClassPartialModifier.GD0001.cs", "ClassPartialModifier.GD0001.fixed.cs");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void OuterClassPartialModifierAnalyzerTest()
|
||||
{
|
||||
await CSharpAnalyzerVerifier<ClassPartialModifierAnalyzer>.Verify("OuterClassPartialModifierAnalyzer.GD0002.cs");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue