public void Invoke_GetAlgorithmsAsync_Returns_Result()
        {
            HasClientCredentials();

            Dictionary <string, Algorithm> result = null;

            Assert.That(async() => result = await _auphonic.GetAlgorithmsAsync(), Throws.Nothing);
            Assert.That(result, Is.Not.Null);
            Assert.That(result.Count, Is.GreaterThan(0));
        }