@@ -15,7 +15,8 @@ public class FileExtractFunctionTests
1515{
1616 private readonly Mock < ILogger < FileExtractFunction > > _loggerMock ;
1717 private readonly Mock < IMeshInboxService > _meshInboxServiceMock ;
18- private readonly Mock < IFileTransformQueueClient > _queueClientMock ;
18+ private readonly Mock < IFileTransformQueueClient > _fileTransformQueueClientMock ;
19+ private readonly Mock < IFileExtractQueueClient > _fileExtractQueueClientMock ;
1920 private readonly Mock < IMeshFilesBlobStore > _blobStoreMock ;
2021 private readonly ServiceLayerDbContext _dbContext ;
2122 private readonly FileExtractFunction _function ;
@@ -24,7 +25,8 @@ public FileExtractFunctionTests()
2425 {
2526 _loggerMock = new Mock < ILogger < FileExtractFunction > > ( ) ;
2627 _meshInboxServiceMock = new Mock < IMeshInboxService > ( ) ;
27- _queueClientMock = new Mock < IFileTransformQueueClient > ( ) ;
28+ _fileExtractQueueClientMock = new Mock < IFileExtractQueueClient > ( ) ;
29+ _fileTransformQueueClientMock = new Mock < IFileTransformQueueClient > ( ) ;
2830 _blobStoreMock = new Mock < IMeshFilesBlobStore > ( ) ;
2931
3032 var options = new DbContextOptionsBuilder < ServiceLayerDbContext > ( )
@@ -41,7 +43,8 @@ public FileExtractFunctionTests()
4143 _loggerMock . Object ,
4244 _meshInboxServiceMock . Object ,
4345 _dbContext ,
44- _queueClientMock . Object ,
46+ _fileTransformQueueClientMock . Object ,
47+ _fileExtractQueueClientMock . Object ,
4548 _blobStoreMock . Object
4649 ) ;
4750 }
0 commit comments