You are here

private function ForumAccessTestCase::assertNoTextArray in Forum Access 6

The array version of the function assertNoText

1 call to ForumAccessTestCase::assertNoTextArray()
ForumAccessTestCase::testForumAccessCreateReply in ./forum_access.test
This function test if the user can create a reply on a comment Three steps: is there a create link, does the create reply page opens and can the new reply on a comment be saved

File

./forum_access.test, line 1414
Test file for forum_access.module.

Class

ForumAccessTestCase
This is the base class for forum access testing.

Code

private function assertNoTextArray($text, $message = '', $group = 'Other') {
  return $this
    ->assertTextArrayHelper($text, $message, $group, TRUE);
}