In terms of cleaning up the tree .. we really need some sniffs specifically for that tree if it is going to work. For example, the biggest issue I see is line length. Tests have a lot of issues with line length because the expects can't include line endings unless the actual result includes line endings. Really, I would like to just turn off line length testing in anything in he testing tree. Also there should be a decision about whether @covers is required. It's not present in the majority of tests and it would need a special sniff to only apply to tests.
Also (related to the other thread) we need to decide
protected function setUp ()
{
}
or
protected function setUp ()
{
}
Since it is inconsistent.
Those were the most obvious issues looking through the codesniff results and the tree itself.
Elin