public void Get_Table_Definition()
 {
     var server = new SqlServer();
     var table = server.GetTableDefinition("localhost", "master", "spt_fallback_db");
     table.ShouldNotBeNull();
     table.Columns.Count().ShouldNotEqual(0);
 }