public void MultimodalFileSupportedFormatsGetAsyncTest() { FileSupportedFormatsResponse fileSupportedFormatsResponse = new FileSupportedFormatsResponse(); Task.Run(async () => { fileSupportedFormatsResponse = await fileApi.MultimodalFileSupportedFormatsGetAsync(null, null); }).Wait(); Assert.IsNotNull(fileSupportedFormatsResponse.Formats); }
public void MultimodalFileSupportedFormatsGetTest() { String test = System.Reflection.Assembly.GetExecutingAssembly().Location; Trace.WriteLine(test); FileSupportedFormatsResponse fileSupportedFormatsResponse = new FileSupportedFormatsResponse(); fileSupportedFormatsResponse = fileApi.MultimodalFileSupportedFormatsGet(null, null); Assert.IsNotNull(fileSupportedFormatsResponse.Formats); }