Ejemplo n.º 1
0
        public void AddUserToList()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();

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

            Assert.True(true);
        }
Ejemplo n.º 3
0
        public void SendEmailCampain_Test()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();

            mailchimpSErvices.CreateAndSendCampaign("test");
            Assert.True(true);
        }
Ejemplo n.º 4
0
        public void GetAllMailingLists_Test()
        {
            MailchimpSErvices mailchimpSErvices = new MailchimpSErvices();
            var test = mailchimpSErvices.GetAllMailingLists();

            Assert.True(true);
        }