Ejemplo n.º 1
0
        public async Task TearDown()
        {
            CosmosTable table = await TableCollection.GetIfExistsAsync(_databaseName);

            if (table != null)
            {
                await table.DeleteAsync(WaitUntil.Completed);
            }
        }