Slide 15
Slide 15 text
No, … Fixtures!
We don’t want to test our app with real life data. So we need something else.
Test datasets are called “fixtures”. And they get “magically” imported when
running our test cases.
1, 'name' => 'Group with users'),
array('id' => 2, 'name' => 'Group with one user'),
array('id' => 3, 'name' => 'Group without any user')
);
}