public UiWebsiteIntegrationTests()
        {
            _client = new HttpClient
            {
                BaseAddress = new Uri(Config.ApiWebsiteUrl)
            };

            _identityProviderApp = new IdentityProviderApplication();
            _identityProviderApp.Start();

            _webApp = new UiWebApplication();
            _webApp.Start();
        }
        public ApiWebsiteIntegrationTests()
        {
            _client = new HttpClient
            {
                BaseAddress = new Uri(Config.ApiWebsiteUrl)
            };

            _identityProviderApp = new IdentityProviderApplication();
            _identityProviderApp.Start();

            _webApp = new ApiWebApplication();
            _webApp.Start();

            _tokenService = new TokenService(Config.IdentityProviderUrl);
        }