You are here

public function ModuleInstallTest::testModuleInstalls in Business Rules 2.x

Assert that the business_rules module installed correctly.

File

tests/src/Functional/ModuleInstallTest.php, line 35

Class

ModuleInstallTest
Assert that the business_rules module installed correctly.

Namespace

Drupal\Tests\business_rules\Functional

Code

public function testModuleInstalls() {

  // If we get here, then the module was successfully installed during the
  // setUp phase without throwing any Exceptions. Assert that TRUE is true,
  // so at least one assertion runs, and then exit.
  $this
    ->assertTrue(TRUE, 'Module installed correctly.');
}