public FileServiceAzureTests() { if (_connectionString.StartsWith("UseDevelopmentStorage=true;")) { StorageEmulator.Start(); } _FileService = new FileServiceAzureStorage(_connectionString, "test"); }
public LockManagerAzureTests() { if (_connectionString.StartsWith("UseDevelopmentStorage=true;")) { StorageEmulator.Start(); } _LockManager = new LockManagerAzure(new LockManagerAzureOptions { EnvironmentName = "test", StorageConnection = _connectionString }); }