You are here

protected function AuthcacheFormTestCacheLifespan::assertStub in Authenticated User Page Caching (Authcache) 7.2

Test whether the given stub passes the invocation verifier.

1 call to AuthcacheFormTestCacheLifespan::assertStub()
AuthcacheFormTestCacheLifespan::testCachedFormBuildID in modules/authcache_form/tests/authcache_form.test
Test functionality for form-build-id.

File

modules/authcache_form/tests/authcache_form.test, line 834
Test classes for Authcache Form module.

Class

AuthcacheFormTestCacheLifespan
Test form extended lifespan.

Code

protected function assertStub(HookStubProxy $stub, $verifier, $message = NULL) {
  $result = $stub
    ->verify($verifier, $error);
  if (!$message) {
    $message = t('Verify invocation of hook @hook.', array(
      '@hook' => $stub
        ->hookname(),
    ));
  }
  if (!$result && is_string($error)) {
    $message .= ' ' . $error;
  }
  $this
    ->assertTrue($result, $message);
}