Skip to content
Snippets Groups Projects
Unverified Commit 6025a148 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3462973 by mattlc, ultimike, smustgrave, dww, larowlan, alexpott:...

Issue #3462973 by mattlc, ultimike, smustgrave, dww, larowlan, alexpott: Provide details of where core tests, not in core modules, should live
parent 55fd8379
No related branches found
No related tags found
12 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!10786Issue #3490579 by shalini_jha, mstrelan: Add void return to all views...,!10210Issue #3487907: Drupal.displace() use getComputedStyle() for hidden chk.,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation
Pipeline #342011 passed with warnings
Pipeline: drupal

#342030

    Pipeline: drupal

    #342024

      Pipeline: drupal

      #342015

        ...@@ -23,6 +23,14 @@ ...@@ -23,6 +23,14 @@
        /** /**
        * Provides a workspace to test build processes. * Provides a workspace to test build processes.
        * *
        * Module tests extending BuildTestBase must exist in the
        * Drupal\Tests\your_module\Build namespace and live in the
        * modules/your_module/tests/src/Build directory.
        *
        * Tests for core/lib/Drupal classes extending BuildTestBase must exist in the
        * \Drupal\BuildTests namespace and live in the core/tests/Drupal/BuildTests
        * directory.
        *
        * If you need to build a file system and then run a command from the command * If you need to build a file system and then run a command from the command
        * line then this is the test framework for you. * line then this is the test framework for you.
        * *
        ......
        ...@@ -16,6 +16,10 @@ ...@@ -16,6 +16,10 @@
        * Drupal\Tests\your_module\FunctionalJavascript namespace and live in the * Drupal\Tests\your_module\FunctionalJavascript namespace and live in the
        * modules/your_module/tests/src/FunctionalJavascript directory. * modules/your_module/tests/src/FunctionalJavascript directory.
        * *
        * Tests for core/lib/Drupal classes extending WebDriverTestBase must exist in
        * the \Drupal\FunctionalJavascriptTests\Core namespace and live in the
        * core/tests/Drupal/FunctionalJavascriptTests directory.
        *
        * Base class for testing browser interaction implemented in JavaScript. * Base class for testing browser interaction implemented in JavaScript.
        * *
        * @ingroup testing * @ingroup testing
        ......
        ...@@ -47,6 +47,10 @@ ...@@ -47,6 +47,10 @@
        * Drupal\Tests\your_module\Kernel namespace and live in the * Drupal\Tests\your_module\Kernel namespace and live in the
        * modules/your_module/tests/src/Kernel directory. * modules/your_module/tests/src/Kernel directory.
        * *
        * Tests for core/lib/Drupal classes extending KernelTestBase must exist in the
        * \Drupal\KernelTests\Core namespace and live in the
        * core/tests/Drupal/KernelTests directory.
        *
        * This base class should be useful for testing some types of integrations which * This base class should be useful for testing some types of integrations which
        * don't require the overhead of a fully-installed Drupal instance, but which * don't require the overhead of a fully-installed Drupal instance, but which
        * have many dependencies on parts of Drupal which can't or shouldn't be mocked. * have many dependencies on parts of Drupal which can't or shouldn't be mocked.
        ......
        ...@@ -34,6 +34,10 @@ ...@@ -34,6 +34,10 @@
        * Drupal\Tests\your_module\Functional namespace and live in the * Drupal\Tests\your_module\Functional namespace and live in the
        * modules/your_module/tests/src/Functional directory. * modules/your_module/tests/src/Functional directory.
        * *
        * Tests for core/lib/Drupal classes extending BrowserTestBase must exist in the
        * \Drupal\FunctionalTests\Core namespace and live in the
        * core/tests/Drupal/FunctionalTests directory.
        *
        * Tests extending this base class should only translate text when testing * Tests extending this base class should only translate text when testing
        * translation functionality. For example, avoid wrapping test text with t() * translation functionality. For example, avoid wrapping test text with t()
        * or TranslatableMarkup(). * or TranslatableMarkup().
        ......
        ...@@ -19,9 +19,13 @@ ...@@ -19,9 +19,13 @@
        /** /**
        * Provides a base class and helpers for Drupal unit tests. * Provides a base class and helpers for Drupal unit tests.
        * *
        * Module tests extending BrowserTestBase must exist in the * Module tests extending UnitTestCase must exist in the
        * Drupal\Tests\your_module\Functional namespace and live in the * Drupal\Tests\your_module\Unit namespace and live in the
        * modules/your_module/tests/src/Functional directory. * modules/your_module/tests/src/Unit directory.
        *
        * Tests for core/lib/Drupal classes extending UnitTestCase must exist in the
        * \Drupal\Tests\Core namespace and live in the core/lib/tests/Drupal/Tests/Core
        * directory.
        * *
        * Using Symfony's dump() function in Unit tests will produce output on the * Using Symfony's dump() function in Unit tests will produce output on the
        * command line. * command line.
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment