Passed
Push — main ( 7afb59...2d8e02 )
by Eric
18:51 queued 11:43
created

PhpProjectTemplateTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file is part of Esi\PhpProjectTemplate.
7
 *
8
 * (c) Eric Sizemore <[email protected]>
9
 *
10
 * This source file is subject to the MIT license. For the full copyright and
11
 * license information, please view the LICENSE file that was distributed with
12
 * this source code.
13
 */
14
15
namespace Esi\PhpProjectTemplate\Tests;
16
17
use Esi\PhpProjectTemplate\PhpProjectTemplate;
18
use PHPUnit\Framework\Attributes\CoversClass;
19
use PHPUnit\Framework\TestCase;
20
21
/**
22
 * @internal
23
 */
24
#[CoversClass(PhpProjectTemplate::class)]
25
final class PhpProjectTemplateTest extends TestCase
26
{
27
    public function testFoo(): void
28
    {
29
        self::assertSame('bar', (new PhpProjectTemplate())->foo());
30
    }
31
}
32