You are here

public function StandardProfileTest::testRdfaOutput in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/rdf/src/Tests/StandardProfileTest.php \Drupal\rdf\Tests\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/src/Tests/StandardProfileTest.php, line 197
Contains \Drupal\rdf\Tests\StandardProfileTest.

Class

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

Namespace

Drupal\rdf\Tests

Code

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