Esempio n. 1
0
        public async Task Can_retrieve_wsfed_metadata()
        {
            // Arrange
            var authenticationApiClient = new AuthenticationApiClient(new Uri(GetVariable("AUTH0_AUTHENTICATION_API_URL")));

            // Act
            var response = await authenticationApiClient.GetWsFedMetadata();

            // Assert
            response.Should().NotBeNull();
        }