public void TestFirebirdEmbeddedNoServerName()
 {
     String conn =
         new ConnectionStringFirebirdEmbeddedFactory().GetConnectionString("", "testdb",
                                                                           "testusername",
                                                                           "testpassword", "testport");
 }
        public void TestFirebirdEmbedded()
        {
            String conn =
                new ConnectionStringFirebirdEmbeddedFactory().GetConnectionString("testserver", "testdatasource",
                                                                                  "testuser", "testpassword",
                                                                                  "");

            Assert.AreEqual("User=testuser;Password=testpassword;Database=testdatasource;ServerType=1", conn,
                            "ConnectionStringFactory not working for Firebird");
        }
 public void TestFirebirdEmbeddedNoServerName()
 {
     String conn =
         new ConnectionStringFirebirdEmbeddedFactory().GetConnectionString("", "testdb",
                                                                                      "testusername",
                                                                                      "testpassword", "testport");
 }
 public void TestFirebirdEmbedded()
 {
     String conn =
         new ConnectionStringFirebirdEmbeddedFactory().GetConnectionString("testserver", "testdatasource",
                                                                                         "testuser", "testpassword",
                                                                                         "");
     Assert.AreEqual("User=testuser;Password=testpassword;Database=testdatasource;ServerType=1", conn,
                     "ConnectionStringFactory not working for Firebird");
 }