for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\Registry;
use PHPUnit\Framework\TestCase;
class RegistryClientTest extends TestCase
{
public function testImageTags() : void
$client = new RegistryClient();
$tags = $client->getImageTagsOnDockerHub('thecodingmachine/php');
$this->assertNotEmpty($tags);
$this->assertInternalType('string', $tags[0]);
}