Skip to content

Commit

Permalink
480259 - Resolved unit test error
Browse files Browse the repository at this point in the history
  • Loading branch information
evidentrilokkhandelwal committed Nov 28, 2024
1 parent 26a3a82 commit ad6363b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ public class ServiceBusQueueTriggerTests
private readonly Mock<ICalculatorRunService> calculatorRunService;
private readonly Mock<ICalculatorRunParameterMapper> parameterMapper;
private readonly Mock<ILogger> mockLogger;
private readonly Mock<IAzureSynapseRunner> azureSynapseRunner;


public ServiceBusQueueTriggerTests()
{
this.calculatorRunService = new Mock<ICalculatorRunService>();
this.parameterMapper = new Mock<ICalculatorRunParameterMapper>();
this.azureSynapseRunner = new Mock<IAzureSynapseRunner>();

this.function = new ServiceBusQueueTrigger(
this.calculatorRunService.Object,
this.parameterMapper.Object,
this.azureSynapseRunner.Object);
this.parameterMapper.Object
);
this.mockLogger = new Mock<ILogger>();
}

Expand Down

0 comments on commit ad6363b

Please sign in to comment.