func compareTableRow(row1 *gauge_messages.ProtoTableRow, row2 *gauge_messages.ProtoTableRow, c *C) { c.Assert(row1.GetCells(), DeepEquals, row2.GetCells()) }
func makeProtoTableRowCopy(tableRow *gauge_messages.ProtoTableRow) *gauge_messages.ProtoTableRow { copiedCells := make([]string, 0) return &gauge_messages.ProtoTableRow{Cells: append(copiedCells, tableRow.GetCells()...)} }