public void SetUpTest()
        {
            this.profileProvider = new SalesforceProfileProvider();
              this.profileProvider.Initialize("salesforce", new NameValueCollection() { { "readOnly", "false" }, { "applicationName", "sitecore" } });

              var configuration = SalesforceManager.GetConfiguration(this.profileProvider.Name);

              this.Client = configuration.Client;
              this.ContactsApi = configuration.Api.ContactsApi;
        }
        public void SetUpTest()
        {
            this.profileProvider = new SalesforceProfileProvider();
            this.profileProvider.Initialize("salesforce", new NameValueCollection()
            {
                { "readOnly", "false" }, { "applicationName", "sitecore" }
            });

            var configuration = SalesforceManager.GetConfiguration(this.profileProvider.Name);

            this.Client      = configuration.Client;
            this.ContactsApi = configuration.Api.ContactsApi;
        }