public void GetGatewayTest()
        {
            GatewayFactory_Accessor target = new GatewayFactory_Accessor(); // TODO: Initialize to an appropriate value
            string gatewayCode = string.Empty; // TODO: Initialize to an appropriate value
            INotificationGateway expected = null; // TODO: Initialize to an appropriate value

            gatewayCode = "001";
            expected.Attachments.Add(null);
            expected.Bcc = "*****@*****.**";
            expected.Body = "message";
            expected.BodyContentPath = "path";
            expected.CC = "*****@*****.**";
            expected.Subject = "message";
            expected.To = "*****@*****.**";

            INotificationGateway actual;
            actual = target.GetGateway(gatewayCode);
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetGatewayTest()
        {
            GatewayFactory_Accessor target = new GatewayFactory_Accessor(); // TODO: Initialize to an appropriate value
            string gatewayCode             = string.Empty;                  // TODO: Initialize to an appropriate value
            INotificationGateway expected  = null;                          // TODO: Initialize to an appropriate value

            gatewayCode = "001";
            expected.Attachments.Add(null);
            expected.Bcc             = "*****@*****.**";
            expected.Body            = "message";
            expected.BodyContentPath = "path";
            expected.CC      = "*****@*****.**";
            expected.Subject = "message";
            expected.To      = "*****@*****.**";

            INotificationGateway actual;

            actual = target.GetGateway(gatewayCode);
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }