Interim commit.
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / src / Tests / MetatagDublinCoreAdvancedTagsTest.php
1 <?php
2
3 namespace Drupal\metatag_dc_advanced\Tests;
4
5 use Drupal\simpletest\WebTestBase;
6 use Drupal\metatag\Tests\MetatagTagsTestBase;
7
8 /**
9  * Tests that each of the Dublin Core Advanced tags work correctly.
10  *
11  * @group metatag
12  */
13 class MetatagDublinCoreAdvancedTagsTest extends MetatagTagsTestBase {
14
15   /**
16    * {@inheritdoc}
17    */
18   public $tags = [];
19
20   /**
21    * The tag to look for when testing the output.
22    */
23   public $test_tag = 'meta';
24
25   /**
26    * The attribute to look for to indicate which tag.
27    */
28   public $test_name_attribute = 'property';
29
30   /**
31    * {@inheritdoc}
32    */
33   protected function setUp() {
34     parent::$modules[] = 'metatag_dc_advanced';
35     parent::setUp();
36   }
37
38 }