Test Failed
Pull Request — master (#26)
by Christopher
02:51
created

xsIDREFSTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
4
namespace AlgoWeb\xsdTypes;
5
6
/**
7
 * Generated Test Class.
8
 */
9
class xsIDREFSTest extends \PHPUnit_Framework_TestCase
10
{
11
    /**
12
     * @var \AlgoWeb\xsdTypes\xsIDREFS
13
     */
14
    protected $object;
15
16
    /**
17
     * Sets up the fixture, for example, opens a network connection.
18
     * This method is called before a test is executed.
19
     */
20
    protected function setUp()
21
    {
22
        parent::setUp();
23
        $this->object = new \AlgoWeb\xsdTypes\xsIDREFS();
0 ignored issues
show
Bug introduced by
The call to xsIDREFS::__construct() misses a required argument $value.

This check looks for function calls that miss required arguments.

Loading history...
24
    }
25
26
    /**
27
     * Tears down the fixture, for example, closes a network connection.
28
     * This method is called after a test is executed.
29
     */
30
    protected function tearDown()
31
    {
32
        parent::tearDown();
33
    }
34
35
    /**
36
     * @covers \AlgoWeb\xsdTypes\xsIDREFS::__toString
37
     * @todo   Implement test__toString().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
38
     */
39
    public function test__toString()
0 ignored issues
show
Coding Style introduced by
This method is not in camel caps format.

This check looks for method names that are not written in camelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection seeker becomes databaseConnectionSeeker.

Loading history...
40
    {
41
        // Remove the following lines when you implement this test.
42
        $this->markTestIncomplete(
43
            'This test has not been implemented yet.'
44
        );
45
    }
46
}
47