From 06ca6714acb86ed7a97cbb3314c163820fb5e1c5 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Thu, 27 Jul 2017 09:42:31 -0500 Subject: [PATCH] Added 3.5 migration note on ConsoleIntegrationTestCase --- en/appendices/3-5-migration-guide.rst | 9 +++++++++ en/development/testing.rst | 2 ++ 2 files changed, 11 insertions(+) diff --git a/en/appendices/3-5-migration-guide.rst b/en/appendices/3-5-migration-guide.rst index 932ba03cc2..10d4b2c46a 100644 --- a/en/appendices/3-5-migration-guide.rst +++ b/en/appendices/3-5-migration-guide.rst @@ -167,6 +167,15 @@ cache configuration to fall back to if the engine is misconfigured (or unavailable). See :ref:`cache-configuration-fallback` for more information on configuring fallbacks. +Console Integration Testing +--------------------------- + +The ``Cake\TestSuite\ConsoleIntegrationTestCase`` class was added to make +integration testing console applications easier. For more information, visit +the :ref:`console-integration-testing` section. This test class is fully +compatible with the current shell dispatcher as well as the new +``Cake\Console\CommandRunner``. + Core ---- diff --git a/en/development/testing.rst b/en/development/testing.rst index 1ff3dc9a30..5614edfb07 100644 --- a/en/development/testing.rst +++ b/en/development/testing.rst @@ -1322,6 +1322,8 @@ comparison files as they are referenced: # # modified: tests/comparisons/example.php +.. _console-integration-testing: + Console Integration Testing ===========================