Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix build
Browse files Browse the repository at this point in the history
dpvreony committed Jun 17, 2024
1 parent 9d208d2 commit edeaf55
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@
using Vetuviem.Avalonia.SourceGenerator;
using Vetuviem.SourceGenerator.Features.ControlBindingModels;
using Vetuviem.Testing;
using Vetuviem.Winforms.SourceGenerator;
using Xunit.Abstractions;

namespace Vetuviem.IntegrationTests.ReactiveUI.Avalonia
@@ -32,6 +31,12 @@ public ExecuteMethod(ITestOutputHelper output)
{
}

/// <inheritdoc />
protected override string GetProjectSourceCode()
{
return string.Empty;
}

/// <inheritdoc />
protected override AnalyzerConfigOptionsProvider? GetAnalyzerConfigOptionsProvider()
{
8 changes: 0 additions & 8 deletions src/Vetuviem.Testing/BaseGeneratorTests.cs
Original file line number Diff line number Diff line change
@@ -67,8 +67,6 @@ public void GeneratesCode()

var analyzerConfigOptionsProvider = GetAnalyzerConfigOptionsProvider();

var analyzerConfigOptionsProvider = GetAnalyzerConfigOptionsProvider();

var newComp = RunGenerators(
comp,
analyzerConfigOptionsProvider,
@@ -104,12 +102,6 @@ public void GeneratesCode()
/// <returns>Analyzer Config Options.</returns>
protected abstract AnalyzerConfigOptionsProvider? GetAnalyzerConfigOptionsProvider();

/// <summary>
/// Gets the analyzer config options provider to test with.
/// </summary>
/// <returns>Analyzer Config Options.</returns>
protected abstract AnalyzerConfigOptionsProvider? GetAnalyzerConfigOptionsProvider();

/// <summary>
/// Allows addition of platform specific metadata references. Unit Tests start in an agnostic fashion
/// with no specific references loaded. Source generators typically take these via MSBuild loading

0 comments on commit edeaf55

Please sign in to comment.