You are here

function baz in Zircon Profile 8

Same name in this branch
  1. 8 vendor/phpunit/php-code-coverage/tests/_files/source_with_ignore.php \baz()
  2. 8 vendor/phpunit/php-code-coverage/tests/_files/source_with_oneline_annotations.php \baz()
Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-code-coverage/tests/_files/source_with_ignore.php \baz()
  2. 8.0 vendor/phpunit/php-code-coverage/tests/_files/source_with_oneline_annotations.php \baz()
199 string references to 'baz'
AggregateExceptionTest::testHasReason in vendor/guzzlehttp/promises/tests/AggregateExceptionTest.php
AppendStreamTest::testCanReadFromMultipleStreams in vendor/guzzlehttp/psr7/tests/AppendStreamTest.php
AppendStreamTest::testSeeksToPositionByReading in vendor/guzzlehttp/psr7/tests/AppendStreamTest.php
ArgumentsResolverTest::providerTestGetArgument in core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php
Provides test data to testGetArgument().
ArgumentsResolverTest::testHandleNotUpcastedArgument in core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php
Tests handleUnresolvedArgument() for a scalar argument.

... See full list

File

vendor/phpunit/php-code-coverage/tests/_files/source_with_oneline_annotations.php, line 16

Code

function baz() {

  // a one-line comment
  print '*';

  // a one-line comment

  /* a one-line comment */
  print '*';

  /* a one-line comment */

  /* a one-line comment
   */
  print '*';

  /* a one-line comment
   */
  print '*';

  // @codeCoverageIgnore
  print '*';

  // @codeCoverageIgnoreStart
  print '*';
  print '*';

  // @codeCoverageIgnoreEnd
  print '*';
}