Merge "Changes after Custom actor impl extension, cleanup, extension and test cases...
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 26 May 2015 17:34:43 +0000 (10:34 -0700)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Tue, 26 May 2015 17:34:43 +0000 (10:34 -0700)
automated-tests/src/dali-toolkit/utc-Dali-TableView.cpp

index 30f0cda..8e6bffa 100644 (file)
@@ -438,6 +438,10 @@ int UtcDaliTableViewCells(void)
   tableView.AddChild(actor1, TableView::CellPosition(110, 110, 5, 5));
   DALI_TEST_CHECK( tableView.GetRows() == 115 && tableView.GetColumns() == 115 );
 
+  // Set the alignment of the cell
+  tableView.SetCellAlignment( TableView::CellPosition(100, 100, 1, 1), HorizontalAlignment::CENTER, VerticalAlignment::CENTER );
+  tableView.SetCellAlignment( TableView::CellPosition(110, 110, 5, 5), HorizontalAlignment::LEFT, VerticalAlignment::TOP );
+
   DALI_TEST_CHECK( true );
   END_TEST;
 }