File: tests_old.php

package info (click to toggle)
phploc 7.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 556 kB
  • sloc: php: 2,383; xml: 121; makefile: 22
file content (23 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
class ATest extends PHPUnit_Framework_TestCase
{
    public function testFoo()
    {
    }

    /**
     * @test
     * @dataProvider barProvider
     */
    public function bar()
    {
    }

    protected function doSomething()
    {
    }

    public function barProvider()
    {
    }
}