Exemplo n.º 1
0
        public void Create()
        {
            var Temp = new Utilities.ORM.Manager.QueryProvider.Default.LDAP.LDAPBatch(TestDatabaseSource);

            Assert.NotNull(Temp);
            Assert.Equal(0, Temp.CommandCount);
        }
Exemplo n.º 2
0
        public void AddCommand()
        {
            var Temp = new Utilities.ORM.Manager.QueryProvider.Default.LDAP.LDAPBatch(TestDatabaseSource);

            Temp.AddCommand(null, null, " ", CommandType.Text, "@", new object[] { 1, "ASDF", 2.0f, Guid.NewGuid() });
            Assert.Equal(1, Temp.CommandCount);
        }
 public void Create()
 {
     var Temp = new Utilities.ORM.Manager.QueryProvider.Default.LDAP.LDAPBatch(TestDatabaseSource);
     Assert.NotNull(Temp);
     Assert.Equal(0, Temp.CommandCount);
 }
 public void AddCommand()
 {
     var Temp = new Utilities.ORM.Manager.QueryProvider.Default.LDAP.LDAPBatch(TestDatabaseSource);
     Temp.AddCommand(null, null, " ", CommandType.Text, "@", new object[] { 1, "ASDF", 2.0f, Guid.NewGuid() });
     Assert.Equal(1, Temp.CommandCount);
 }