Braintree.Tests.CredentialsParserTest.CredentialsParser_ThrowErrorOnInconsistentClientSecret C# (CSharp) Method

CredentialsParser_ThrowErrorOnInconsistentClientSecret() private method

        public void CredentialsParser_ThrowErrorOnInconsistentClientSecret()
        {
            Assert.Throws<ConfigurationException>(() => new CredentialsParser(
                "client_secret$development$integration_client_secret",
                "client_secret$development$integration_client_secret"
            ));
        }
    }