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);
        }
Exemplo n.º 2
0
 private void UpButton_Click(object sender, System.EventArgs e)
 {
     operations.UpRow(DataTableGrid);
 }