public async Task Test_GetIssueLinkTypes_Async()
        {
            // Create the client.
            IJiraClient client = CreateJiraClient();

            // Make the call.
            GetIssueLinkTypesResponse response = await client
                                                 .GetIssueLinkTypesAsync(CancellationToken.None)
                                                 .ConfigureAwait(false);

            // Assert.
            Assert.NotEmpty(response.IssueLinkTypes);
        }