iranianpep/php-base-project

View on GitHub
tests/PhpBaseProject/GreetingTest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace PhpBaseProject;

use PHPUnit\Framework\TestCase;

class GreetingTest extends TestCase
{
    public function testHello(): void
    {
        $greeting = new Greeting();

        $this->assertEquals('hi', $greeting->hello());
    }
}