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,17 @@
<?php
/**
* @author Daniel J. Summers <daniel@bitbadger.solutions>
* @license MIT
*/
declare(strict_types=1);
namespace Test\Integration;
/**
* A test document with a numeric ID
*/
class NumDocument
{
public function __construct(public int $id = 0, public string $value = '') { }
}