Open
Description
IF the connection string isn't set in the appsettings.json file for the unit tests (as is the case in the checked-in file), all the test will just return without doing anything or triggering an assert (appearing to pass).
The lines at AzureServiceBusQueueTests.cs(21)
if (String.IsNullOrEmpty(connectionString))
return null;
need to be changed to something like:
Assert.False(String.IsNullOrEmpty(connectionString), "AzureServiceBusConnectionString must be specified in the appsettings.json file");
Metadata
Metadata
Assignees
Labels
No labels