Migrate tests to Pest

This commit is contained in:
2024-11-17 21:30:53 +00:00
parent 486028bd40
commit d896e9a6c6
93 changed files with 5720 additions and 5207 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* @author Daniel J. Summers <daniel@bitbadger.solutions>
* @license MIT
*/
declare(strict_types=1);
namespace Test\Integration;
class TestDocument
{
public function __construct(public string $id = '', public string $value = '', public int $num_value = 0,
public ?SubDocument $sub = null) { }
}