VarnishBundledPurgerFormTest.php in Varnish purger 8
Same filename and directory in other branches
Namespace
Drupal\varnish_purger\TestsFile
src/Tests/VarnishBundledPurgerFormTest.phpView source
<?php
namespace Drupal\varnish_purger\Tests;
/**
* Tests \Drupal\varnish_purger\Form\VarnishBundledPurgerForm.
*
* @group varnish_purger
*/
class VarnishBundledPurgerFormTest extends VarnishPurgerFormTestBase {
/**
* The full class of the form being tested.
*
* @var string
*/
protected $formClass = 'Drupal\\varnish_purger\\Form\\VarnishBundledPurgerForm';
/**
* The plugin ID for which the form tested is rendered for.
*
* @var string
*/
protected $plugin = 'varnishbundled';
/**
* The token group names the form is supposed to display.
*
* @see purge_tokens_token_info()
*
* @var string[]
*/
protected $tokenGroups = [
'invalidations',
];
}
Classes
Name | Description |
---|---|
VarnishBundledPurgerFormTest | Tests \Drupal\varnish_purger\Form\VarnishBundledPurgerForm. |