public void InlineCss_Successful()
        {
            //  Arrange
            MailChimpManager mc = new MailChimpManager(TestGlobal.Test_APIKey);

            //  Act
            string    html    = @"<html>
	                            <style type=""text/css"">
                                .style1 {
                                    color: red;
		                            font-weight: bold;
                                }
                            </style>
	                            <body>
		                            <p class=""style1"">Test</p>
	                            </body>
                            </html>";
            InlineCss details = mc.InlineCss(html, false);

            //  Assert
            Assert.IsNotNull(details.Html);
        }
        public void InlineCss_Successful()
        {
            //  Arrange
            MailChimpManager mc = new MailChimpManager(TestGlobal.Test_APIKey);

            //  Act
            string html = @"<html>
	                            <style type=""text/css"">
                                .style1 {
                                    color: red;
		                            font-weight: bold;
                                }
                            </style>
	                            <body>
		                            <p class=""style1"">Test</p>
	                            </body>
                            </html>";
            InlineCss details = mc.InlineCss(html, false);

            //  Assert
            Assert.IsNotNull(details.Html);
        }