예제 #1
0
        public void AddUserToList()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();

            mailchimpSErvices.AddUserToList("*****@*****.**");
            Assert.True(true);
        }
예제 #2
0
        public void GetAllTemplete_Test()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();
            var test = mailchimpSErvices.GetAllTemplates();

            Assert.True(true);
        }
예제 #3
0
        public void SendEmailCampain_Test()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();

            mailchimpSErvices.CreateAndSendCampaign("test");
            Assert.True(true);
        }
예제 #4
0
        public void GetAllMailingLists_Test()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();
            var test = mailchimpSErvices.GetAllMailingLists();

            Assert.True(true);
        }