Completed
Push — master ( 14a06b...6322f3 )
by Nelson
05:31
created

StrictObjectTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExists() 0 3 1
1
<?php declare(strict_types=1);
2
/**
3
 * PHP: Nelson Martell Library file
4
 *
5
 * Copyright © 2016-2019 Nelson Martell (http://nelson6e65.github.io)
6
 *
7
 * Licensed under The MIT License (MIT)
8
 * For full copyright and license information, please see the LICENSE
9
 * Redistributions of files must retain the above copyright notice.
10
 *
11
 * @copyright 2016-2019 Nelson Martell
12
 * @link      http://nelson6e65.github.io/php_nml/
13
 * @since     v0.6.0
14
 * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
15
 * */
16
17
namespace NelsonMartell\Test\TestCase;
18
19
use NelsonMartell\Test\DataProviders\StrictObjectTestProvider;
20
21
use PHPUnit\Framework\TestCase;
22
23
/**
24
 *
25
 * @author Nelson Martell <[email protected]>
26
 * @internal
27
 * @group Criticals
28
 * */
29
class StrictObjectTest extends TestCase
30
{
31
    use StrictObjectTestProvider;
32
33
    /**
34
     *
35
     */
36
    public function testExists() : void
37
    {
38
        $this->assertTrue(true);
39
    }
40
}
41