コード例 #1
0
        public NhsAppApiJwtWrapperClient(TestConfiguration testConfiguration, IAccessTokenCacheService accessTokenService)
        {
            _httpClient = new HttpClient
            {
                BaseAddress = new Uri(testConfiguration.ApplicationUrl)
            };

            _accessTokenService = accessTokenService;
        }
コード例 #2
0
 protected static void TestClassSetup(TestConfiguration testConfiguration)
 {
     _testConfiguration       = testConfiguration;
     _accessTokenCacheService = new AccessTokenCacheService(testConfiguration);
 }