Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 38f7ab6

Browse files
committed
Initiate dummy test
1 parent 52e0ce8 commit 38f7ab6

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"license": "Apache-2.0",
1515
"autoload": {
1616
"psr-4": {
17-
"Bellangelo\\PHPStanRequireFileExists\\": "src/"
17+
"Bellangelo\\PHPStanRequireFileExists\\": "src/",
18+
"Tests\\": "tests/"
1819
}
1920
},
2021
"authors": [

tests/MainTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Tests;
6+
7+
use PHPUnit\Framework\TestCase;
8+
9+
class MainTest extends TestCase
10+
{
11+
public function test_happy_path(): void
12+
{
13+
$this->assertTrue(true);
14+
}
15+
}

0 commit comments

Comments
 (0)