public function testGetColumnList()
 {
     $columns = array($this->getColumnMock('foo'), $this->getColumnMock('bar'), $this->getColumnMock('baz'));
     $table = new Table();
     $this->assertSame('foo|bar|baz', $table->getColumnList($columns, '|'));
 }