protected function AuthcacheFormTestTokenRemoval::assertStub in Authenticated User Page Caching (Authcache) 7.2
Test whether the given stub passes the invocation verifier.
1 call to AuthcacheFormTestTokenRemoval::assertStub()
- AuthcacheFormTestTokenRemoval::testTokenRemoval in modules/
authcache_form/ tests/ authcache_form.test  - Test token removal functionality.
 
File
- modules/
authcache_form/ tests/ authcache_form.test, line 422  - Test classes for Authcache Form module.
 
Class
- AuthcacheFormTestTokenRemoval
 - Test form token removal method
 
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);
}