Skip to content

Commit

Permalink
asyncapi#207 fix bad rename
Browse files Browse the repository at this point in the history
  • Loading branch information
SennG committed Jul 14, 2024
1 parent 5ed4c20 commit 31febd9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ namespace AsyncAPI.Saunter.Generator.Cli.Tests.ToFile;

public class ToFileCommandTests
{
private readonly FromSpecCommand _command;
private readonly ToFileCommand _command;
private readonly IEnvironmentBuilder _environment;
private readonly IServiceProviderBuilder _builder;
private readonly IAsyncApiDocumentExtractor _docExtractor;
private readonly IFileWriter _fileWriter;
private readonly ILogger<FromSpecCommand> _logger;
private readonly ILogger<ToFileCommand> _logger;
private readonly ITestOutputHelper _output;

public ToFileCommandTests(ITestOutputHelper output)
{
this._output = output;
this._logger = Substitute.For<ILogger<FromSpecCommand>>();
this._logger = Substitute.For<ILogger<ToFileCommand>>();
this._environment = Substitute.For<IEnvironmentBuilder>();
this._builder = Substitute.For<IServiceProviderBuilder>();
this._docExtractor = Substitute.For<IAsyncApiDocumentExtractor>();
this._fileWriter = Substitute.For<IFileWriter>();
this._command = new FromSpecCommand(this._logger, _environment, _builder, _docExtractor, _fileWriter);
this._command = new ToFileCommand(this._logger, _environment, _builder, _docExtractor, _fileWriter);
}

[Fact]
Expand Down

0 comments on commit 31febd9

Please sign in to comment.