simpletest.description.html.twig

Same filename in other branches
  1. 3.x modules/testing_example/templates/simpletest.description.html.twig
  2. 4.0.x modules/testing_example/templates/simpletest.description.html.twig
{#

Description text for the Simpletest Example.

#}

{% trans %}

Please note that the use of SimpleTest is deprecated. This example module will be removed in Drupal 9, and new tests should not be written using SimpleTest. In addition, all existing SimpleTest tests should be converted to PHPUnit functional tests.

There are some instructions for how to convert Simpletest-based tests to the new BrowserTestBase in this change notice: https://www.drupal.org/node/2469723.

{% endtrans %}

File

testing_example/templates/simpletest.description.html.twig

View source
  1. {#
  2. Description text for the Simpletest Example.
  3. #}
  4. {% trans %}
  5. <p>Please note that the use of SimpleTest is deprecated. This example module will
  6. be removed in Drupal 9, and new tests should not be written using SimpleTest. In
  7. addition, all existing SimpleTest tests should be converted to PHPUnit
  8. functional tests.</p>
  9. <p>
  10. There are some instructions for how to convert Simpletest-based tests to the new
  11. BrowserTestBase in this change notice:
  12. <a href="https://www.drupal.org/node/2469723">https://www.drupal.org/node/2469723</a>.
  13. </p>
  14. {% endtrans %}