StrictObjectTest::testExists()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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