Example #1
0
        public void TranslationBatchCreateGetAsyncTest()
        {
            BatchCreate batchCreate = new BatchCreate();

            Task.Run(async() =>
            {
                batchCreate = await translationApi.TranslationBatchCreateGetAsync(null);
            }).Wait();
            Assert.IsNotNull(batchCreate.BatchId);
        }