Blame view

vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php 384 Bytes
ad2e91f7   Mihail   move multyparser ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  class NotExistingCoveredElementTest extends PHPUnit_Framework_TestCase
  {
      /**
       * @covers NotExistingClass
       */
      public function testOne()
      {
      }
  
      /**
       * @covers NotExistingClass::notExistingMethod
       */
      public function testTwo()
      {
      }
  
      /**
       * @covers NotExistingClass::<public>
       */
      public function testThree()
      {
      }
  }