Completed
Push — master ( 8a4daa...fd2b7f )
by Philippe
02:17
created

AccountTest::dummyTestToNotLeaveThisFileEmpty()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/*
3
 * This program is free software: you can redistribute it and/or modify
4
 * it under the terms of the GNU General Public License as published by
5
 * the Free Software Foundation, either version 3 of the License, or
6
 * (at your option) any later version.
7
 *
8
 * This program is distributed in the hope that it will be useful,
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 * GNU General Public License for more details.
12
 *
13
 * You should have received a copy of the GNU General Public License
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 */
16
namespace Filoucrackeur\Hubic\Tests\Domain\Model;
17
18
use Filoucrackeur\Hubic\Domain\Model\Account;
19
use Filoucrackeur\Hubic\Tests\Unit\AbstractUnitTest;
20
21
class AccountTest extends AbstractUnitTest
22
{
23
24
    /**
25
     * @var Account
26
     */
27
    protected $subject = NULL;
28
29
    public function setUp()
30
    {
31
        $this->subject = new Account();
32
    }
33
34
    public function tearDown()
35
    {
36
        unset($this->subject);
37
    }
38
39
    /**
40
     * @test
41
     */
42
    public function alwaysTrue()
43
    {
44
        $this->assertTrue(true);
45
    }
46
47
    /**
48
     * @test
49
     */
50
    public function dummyTestToNotLeaveThisFileEmpty()
51
    {
52
        $this->markTestIncomplete();
53
    }
54
}
55