IOP-Patho/vendor/codeception/base/tests/data/SimpleWithNoClassCest.php

12 lines
197 B
PHP
Raw Permalink Normal View History

2025-07-17 08:28:28 +00:00
<?php
class SimpleWithNoClassCest
{
public function phpFuncitons(CodeGuy $I) {
$I->execute(function() { return strtoupper('hello'); });
$I->seeResultEquals('HELLO');
}
}