public void addToTable()
        {
            BDcreation.BDcreatioon();
            DataBase db = DataBase.load("BD");

            string name = "column";

            Library.Type  type         = Library.Type.Text;
            List <string> columnValues = new List <string>();

            columnValues.Add("prueba");


            Table table = db.Tables["table"];

            table.addToTable(name, type, columnValues);

            Assert.IsTrue(table.Columns.ContainsKey("column"));
        }