public async Task GetGitHubClientAdapterAsync_CreateGitHubClientException()
        {
            // setup
            IGitHubClientAdapterFactory gitHubClientAdapterFactory = new GitHubClientAdapterFactory(
                new Dictionary <string, IGitHubJwtFactory> {
                { "test", mockGitHubJwtFactory.Object }
            },
                gitHubAppFlavorSettings,
                mockAppTelemetry.Object);

            // assert
            await Assert.ThrowsAsync <CreateGitHubClientException>(() => gitHubClientAdapterFactory.GetGitHubClientAdapterAsync(0, "test"));
        }
        public void GitHubClientAdapterFactory_Success()
        {
            // setup
            IGitHubClientAdapterFactory gitHubClientAdapterFactory = new GitHubClientAdapterFactory(
                new Dictionary <string, IGitHubJwtFactory> {
                { "test", mockGitHubJwtFactory.Object }
            },
                gitHubAppFlavorSettings,
                mockAppTelemetry.Object);

            // assert we get to this point
            Assert.True(true);
        }