10000 [3.0][Cookbook] Use the 3.0 directory structure by wouterj · Pull Request #5917 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[3.0][Cookbook] Use the 3.0 directory structure #5917

New issue

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

Merged
merged 9 commits into from
Nov 30, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
app/phpunit.xml.dist -> phpunit.xml.dist
  • Loading branch information
wouterj committed Nov 28, 2015
commit b6d93f09bf5d26bd4f9be965b23b659cbe00f3e1
6 changes: 3 additions & 3 deletions cookbook/testing/bootstrap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ First, add the following file::

require __DIR__.'/bootstrap.php.cache';

Replace the test bootstrap file ``bootstrap.php.cache`` in ``app/phpunit.xml.dist``
Replace the test bootstrap file ``bootstrap.php.cache`` in ``phpunit.xml.dist``
with ``tests.bootstrap.php``:

.. code-block:: xml

<!-- app/phpunit.xml.dist -->
<!-- phpunit.xml.dist -->

<!-- ... -->
<phpunit
Expand All @@ -37,7 +37,7 @@ cache to be cleared:

.. code-block:: xml

<!-- app/phpunit.xml.dist -->
<!-- phpunit.xml.dist -->
<php>
<env name="BOOTSTRAP_CLEAR_CACHE_ENV" value="test"/>
</php>
Expand Down
0