Releases: kununu/testing-bundle
Releases · kununu/testing-bundle
Fix WebTestCase
2.1.0 Fix WebTestCase (#4)
Support Symfony 4.3
- Removed method
getClient
fromKununu\TestingBundle\Test\WebTestCase
.
Before:
$response = $this->doRequest(
$this->getClient(),
RequestBuilder::aGetRequest()->withUri('/app/response')
);
After:
$response = $this->doRequest(
RequestBuilder::aGetRequest()->withUri('/app/response')
);
Add FixturesAwareTestCase & WebTestCase & RequestBuilder
Add FixturesAwareTestCase & WebTestCase & RequestBuilder (#1) * Initial version * Finish loadCachePoolFixtures * Update composer.json * Update composer * Update composer * Update composer.json format * Add test to ensure that WebTestCase extends FixturesAwareTestCase * Update composer. Add JenkinsFile and Sonar * Disable Integration tests. For now * Bump data-fixtures dependency * Define SERVICE_PREFIX const