--TEST-- Header and data as associative arrays. --FILE-- 'foo', 'two' => 'bar' ); $data = array( array( 'x' => 'baz', ) ); $table = new Console_Table(); $table->setHeaders($headers); $table->addData($data); echo $table->getTable(); ?> --EXPECT-- +-----+-----+ | foo | bar | +-----+-----+ | baz | | +-----+-----+