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

DropIfExists_TableExists() private method

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

            AdminQuery.DropTable(tableName, true);

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