I have the following functional test that setup the initial data via fixtures.loadYaml, but when I query the records in testcase, I don't see them. Any reasons?
public class UsersTest extends FunctionalTest {
@Before
public void setup() {
Fixtures.loadYaml("data.yml");
}
@Test
public void testIndex() {
....
}