X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fprofiles%2Ftesting%2Fmodules%2Fdrupal_system_listing_compatible_test%2Ftests%2Fsrc%2FKernel%2FSystemListingCrossProfileCompatibleTest.php;fp=web%2Fcore%2Fprofiles%2Ftesting%2Fmodules%2Fdrupal_system_listing_compatible_test%2Ftests%2Fsrc%2FKernel%2FSystemListingCrossProfileCompatibleTest.php;h=61656a86bdcc84b5245282a602de75ddaf9e0ce9;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=0000000000000000000000000000000000000000;hpb=74df008bdbb3a11eeea356744f39b802369bda3c;p=yaffs-website diff --git a/web/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php b/web/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php new file mode 100644 index 000000000..61656a86b --- /dev/null +++ b/web/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php @@ -0,0 +1,55 @@ +setInstallProfile($this->profile); + } + + /** + * Non-empty test* method required to executed the test case class. + */ + public function testSystemListing() { + /** @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler */ + $module_handler = $this->container->get('module_handler'); + $this->assertTrue($module_handler->moduleExists('drupal_system_cross_profile_test'), 'Module installed from different profile'); + } + +}