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

IfExists_NotExisting() private method

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

            AdminQuery.DropView(viewName, true);

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