Skip to content

Commit

Permalink
Longer performance tests for more significant results
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed May 21, 2014
1 parent 5b910ea commit dbc4770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Performance/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@


$users = [];
for ($i = 0; $i < 10; $i++) {
for ($i = 0; $i < 20; $i++) {
$users[$i] = new User();
$em->persist($users[$i]);
}

$categories = [];
$articles = [];
for ($i = 0; $i < 10; $i++) {
for ($i = 0; $i < 20; $i++) {
$category = new Category();
$em->persist($category);
$categories[$i] = $category;
Expand Down

0 comments on commit dbc4770

Please sign in to comment.