Tests.OServerTests.TestServerDatabaseNotExist C# (CSharp) Method

TestServerDatabaseNotExist() private method

private TestServerDatabaseNotExist ( ) : void
return void
        public void TestServerDatabaseNotExist()
        {
            using (OServer connection = new OServer(_hostname, _port, _rootName, _rootPassword))
            {
                Assert.IsFalse(connection.DatabaseExist("whateverThisShouldNotExist001x"));
            }
        }