Passed
Push — master ( 7fc19c...13cdec )
by Toby
04:11 queued 10s
created

tempTest::testSomething()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * v0Authenticator Test
4
 */
5
namespace Twigger\UnionCloud\Tests\Resources;
6
7
use Twigger\UnionCloud\API\UnionCloud;
8
use Twigger\UnionCloud\Tests\TestCase;
9
10
/**
11
 * Class v0AuthenticatorTest
12
 *
13
 * @package Twigger\UnionCloud\Tests
14
 */
15
class tempTest extends TestCase
16
{
17
18
    /**
19
     * Holds an authenticator class
20
     *
21
     * @var UnionCloud
22
     */
23
    public $unionCloud;
24
25
    public function __construct($name = null, array $data = [], $dataName = '')
26
    {
27
28
29
        parent::__construct($name, $data, $dataName);
30
    }
31
32
    /**
33
     *
34
     */
35
    public function testSomething()
36
    {
37
        $this->expectOutputString(print_r($this->unionCloud, true));
38
    }
39
40
}