Mercurial > hg > isophonics-drupal-site
view core/tests/Drupal/Tests/SkippedDeprecationTest.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Drupal\Tests; /** * @group Test */ class SkippedDeprecationTest extends UnitTestCase { /** * Tests skipping deprecations in unit tests. * * @see \Drupal\Tests\Listeners\DeprecationListenerTrait::getSkippedDeprecations() */ public function testSkippingDeprecations() { @trigger_error('\Drupal\Tests\SkippedDeprecationTest deprecation', E_USER_DEPRECATED); $this->addToAssertionCount(1); } /** * Tests skipping deprecations in unit tests multiple times. * * @see \Drupal\Tests\Listeners\DeprecationListenerTrait::getSkippedDeprecations() */ public function testSkippingDeprecationsAgain() { @trigger_error('\Drupal\Tests\SkippedDeprecationTest deprecation', E_USER_DEPRECATED); $this->addToAssertionCount(1); } }