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

tempTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 23
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testSomething() 0 3 1
A __construct() 0 5 1
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
}