public async Task Async_GetCollectionSchema_NullProjectId_Throws() { var client = new KeenClient(settingsEnv); await client.GetSchemaAsync(null); }
public void Async_GetCollectionSchema_NullProjectId_Throws() { var client = new KeenClient(SettingsEnv); Assert.ThrowsAsync<Keen.Core.KeenException>( () => client.GetSchemaAsync(null)); }