for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SteamMarketProviders\Enums\Tests;
use SteamMarketProviders\Enums\SteamCountry;
use PHPUnit\Framework\TestCase;
class SteamCountryTest extends TestCase
{
public function testGetAll(): void
$this->assertIsArray(SteamCountry::cases());
}
public function testReturnedType(): void
foreach (SteamCountry::cases() as $data) {
$this->assertIsString($data->value);