for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ElevenLabs\Api\JsonSchema\Uri;
use PHPUnit\Framework\TestCase;
class YamlUriRetrieverTest extends TestCase
{
public function testItCanLoadAYamlFile()
$retriever = new YamlUriRetriever();
$object = $retriever->retrieve('file://'.__DIR__.'/../../fixtures/petstore.yaml');
assertThat($object, isType('object'));
}