public void GetFileEndings_Returns_Valid_Result() { Dictionary <string, List <string> > fileEndings = null; Assert.That(() => fileEndings = _auphonic.GetFileEndings(), Throws.Nothing); Assert.That(fileEndings, Is.Not.Null); }
public void Invoke_GetFileEndings_Returns_Result() { HasClientCredentials(); Dictionary <string, List <string> > result = null; Assert.That(() => result = _auphonic.GetFileEndings(), Throws.Nothing); Assert.That(result, Is.Not.Null); Assert.That(result.Count, Is.GreaterThan(0)); }