mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
12 lines
125 B
PHP
12 lines
125 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
/**
|
|
* A basic assert example.
|
|
*/
|
|
function assertExample(): void
|
|
{
|
|
test()->assertTrue(true);
|
|
}
|