Deveel.Data.DropTableTests.DropIfExists_TableNotExists C# (CSharp) Method

DropIfExists_TableNotExists() private method

private DropIfExists_TableNotExists ( ) : void
return void
        public void DropIfExists_TableNotExists()
        {
            var tableName = ObjectName.Parse("APP.test_table3");

            AdminQuery.DropTable(tableName, true);

            var exists = AdminQuery.Session.Access().TableExists(tableName);
            Assert.IsFalse(exists);
        }