public async Task LoadPublicUrl_RequestForLoadPublicUrlFile_GetPublicUrlOfFile() { UnityDisk.FileStorages.OneDrive.Account account = new UnityDisk.FileStorages.OneDrive.Account(); await account.SignIn(_login); FileStorageFile file = new FileStorageFile(new FileBuilder() { Name = "Untitled.png", Path = "/drive/root:" }) { Account = new AccountProjection( new UnityDisk.Accounts.Account(account)) }; await file.CreatePublicUrl(); file = new FileStorageFile(new FileBuilder() { Name = "Untitled.png", Path = "/drive/root:" }) { Account = new AccountProjection( new UnityDisk.Accounts.Account(account)) }; await file.LoadPublicUrl(); Assert.IsFalse(String.IsNullOrEmpty(file.PublicUrl)); Assert.IsFalse(String.IsNullOrEmpty(file.PublicUrlId)); }