public async Task GetAllPluginsAsync_NotConnected_returns_EmptySettings()
        {
            _tableClientService.IsConnected.Returns(false);

            var result = await _storageService.GetAllPluginsAsync();

            Assert.IsNotNull(result);
            Assert.IsInstanceOfType(result, typeof(IReadOnlyList <Plugin>));
            Assert.AreEqual(0, result.Count);
        }