Skip to content

Commit

Permalink
Fix merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam-Rougoor committed Oct 25, 2024
1 parent 1a51eaa commit a122d46
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Shouldly;
using Stryker.Abstractions;
using Stryker.Abstractions.Mutants;
using Stryker.Abstractions.Mutators;
using Stryker.Core.Mutants;
using Stryker.Core.Mutators;
using Stryker.Core.Options;

namespace Stryker.Core.UnitTest.Mutators;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Collections.Generic;
using Stryker.Core.Mutators;
using Stryker.Abstractions.Mutators;

namespace Stryker.Core.Mutants;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Stryker.Abstractions.Mutants;
using Stryker.Abstractions.Mutators;
using Stryker.Abstractions.Options;
using Stryker.Core.Mutants;
using Stryker.Core.Options;

namespace Stryker.Core.Mutators;

public class DefaultParameterMutator : MutatorBase<InvocationExpressionSyntax>
{
private readonly ICSharpMutantOrchestrator _orchestrator;
private readonly StrykerOptions _options;
private readonly IStrykerOptions _options;

public override MutationLevel MutationLevel => MutationLevel.Complete;

public DefaultParameterMutator(ICSharpMutantOrchestrator orchestrator, StrykerOptions options)
public DefaultParameterMutator(ICSharpMutantOrchestrator orchestrator, IStrykerOptions options)
{
_orchestrator = orchestrator;
_options = options;
Expand Down

0 comments on commit a122d46

Please sign in to comment.