You are here

public function StandardProfileTest::testRdfaOutput in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rdf/tests/src/Functional/StandardProfileTest.php \Drupal\Tests\rdf\Functional\StandardProfileTest::testRdfaOutput()

Tests that data is exposed correctly when using standard profile.

Because tests using standard profile take a very long time to run, and because there is no manipulation of config or data within the test, simply run all the tests from within this function.

File

core/modules/rdf/tests/src/Functional/StandardProfileTest.php, line 199

Class

StandardProfileTest
Tests the RDF mappings and RDFa markup of the standard profile.

Namespace

Drupal\Tests\rdf\Functional

Code

public function testRdfaOutput() {
  $this
    ->doFrontPageRdfaTests();
  $this
    ->doArticleRdfaTests();
  $this
    ->doPageRdfaTests();
  $this
    ->doUserRdfaTests();
  $this
    ->doTermRdfaTests();
}