public void test_failed_up_row()
        {
            table.CurrentCell = table.Rows[0].Cells[0];

            OperationsOnRowsTable operations = new OperationsOnRowsTable();

            bool down = operations.UpRow(table);

            Assert.AreEqual(false, down);
        }
        public void test_down_row()
        {
            table.CurrentCell = table.Rows[0].Cells[0];

            OperationsOnRowsTable operations = new OperationsOnRowsTable();

            bool down = operations.DownRow(table);

            Assert.AreEqual(true, down);
        }