You are here

function security_review_test_security_review_checks in Security Review 8

Implements hook_security_review_checks().

2 calls to security_review_test_security_review_checks()
ChecklistTest::setUp in tests/src/Kernel/ChecklistTest.php
Sets up the environment, populates the $checks variable.
CheckTest::setUp in tests/src/Kernel/CheckTest.php
Sets up the environment, populates the $checks variable.

File

tests/modules/security_review_test/security_review_test.module, line 14
Module that defines testable security checks for Security Review.

Code

function security_review_test_security_review_checks() {
  return [
    new Test(),
    new TestNoStore(),
  ];
}