Skip to content

Releases: kununu/testing-bundle

Fix WebTestCase

11 Jun 08:34
3981746
Compare
Choose a tag to compare
2.1.0

Fix WebTestCase (#4)

Support Symfony 4.3

31 May 10:08
3b80087
Compare
Choose a tag to compare
  • Removed method getClient from Kununu\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

17 Apr 13:23
a97d7c0
Compare
Choose a tag to compare
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