public function getFourElements() {
return array(
array(
$this
->createCollection(array(
1,
2,
3,
4,
)),
),
array(
$this
->createCollection(array(
'a' => 1,
'b' => 2,
'c' => 3,
'd' => 4,
)),
),
);
}