コード例 #1
0
        public async Task TestGetSummary()
        {
            NotebookClient client = CreateClient();

            await using DisposableNotebook notebook = await DisposableNotebook.Create(client, this.Recording);

            AsyncPageable <NotebookResource> summary = client.GetNotebookSummaryByWorkSpaceAsync();

            Assert.GreaterOrEqual((await summary.ToListAsync()).Count, 1);
        }