We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we can load fixtures:
setup()
Only the possibility to load fixtures once before test class is missing (like we do with PHPUnit setupBeforeClass()).
setupBeforeClass()
So, I would like to add this ability by implementing a simple flag and a $once parameter in methods like loadFixtureFiles() as follows:
$once
loadFixtureFiles()
public function loadFixtureFiles(array $paths = array(), $append = false, $omName = null, $registryName = 'doctrine', $once = false)
What do you think?
The text was updated successfully, but these errors were encountered:
It may be possible with #81 or we could add another event for that.
Sorry, something went wrong.
With the 2.x release, we removed the trait and moved the fixtures loading to a service. Could the service could be called in setupBeforeClass()?
No branches or pull requests
Currently we can load fixtures:
setup()
Only the possibility to load fixtures once before test class is missing (like we do with PHPUnit
setupBeforeClass()
).So, I would like to add this ability by implementing a simple flag and a
$once
parameter in methods likeloadFixtureFiles()
as follows:public function loadFixtureFiles(array $paths = array(), $append = false, $omName = null, $registryName = 'doctrine', $once = false)
What do you think?
The text was updated successfully, but these errors were encountered: