Deveel.Data.DropViewTests.IfExists_Existing C# (CSharp) Method

IfExists_Existing() private method

private IfExists_Existing ( ) : void
return void
        public void IfExists_Existing()
        {
            var viewName = ObjectName.Parse("APP.test_view1");

            AdminQuery.DropView(viewName, true);

            var exists = AdminQuery.Session.Access().ViewExists(viewName);
            Assert.IsFalse(exists);
        }