diff options
author | Lee Rowlands <lee.rowlands@previousnext.com.au> | 2023-09-26 09:14:17 +1000 |
---|---|---|
committer | Lee Rowlands <lee.rowlands@previousnext.com.au> | 2023-09-26 09:14:17 +1000 |
commit | 6d93485084c49e3d5cc37cc3888e2c2047e0c462 (patch) | |
tree | 8cf2d27fde3a6a9b14efe7618dae26bfb50ef9c6 /core/modules/breakpoint | |
parent | 0af9348ce711d3fcc960cabc39239dc6c1bc894a (diff) | |
download | drupal-6d93485084c49e3d5cc37cc3888e2c2047e0c462.tar.gz drupal-6d93485084c49e3d5cc37cc3888e2c2047e0c462.zip |
Issue #3386458 by catch, quietone, alexpott, larowlan: Add GenericModuleTestBase and use it to test general module things
Diffstat (limited to 'core/modules/breakpoint')
-rw-r--r-- | core/modules/breakpoint/tests/src/Functional/GenericTest.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/modules/breakpoint/tests/src/Functional/GenericTest.php b/core/modules/breakpoint/tests/src/Functional/GenericTest.php new file mode 100644 index 00000000000..355a09d550d --- /dev/null +++ b/core/modules/breakpoint/tests/src/Functional/GenericTest.php @@ -0,0 +1,12 @@ +<?php + +namespace Drupal\Tests\breakpoint\Functional; + +use Drupal\Tests\system\Functional\Module\GenericModuleTestBase; + +/** + * Generic module test for breakpoint. + * + * @group breakpoint + */ +class GenericTest extends GenericModuleTestBase {} |