PhpBench\Tests\Unit\Formatter\FormatRegistryTest::testRegisterRetrieve PHP Method

testRegisterRetrieve() public method

It should register and retrieve formats.
    public function testRegisterRetrieve()
    {
        $this->registry->register('hello', $this->format->reveal());
        $format = $this->registry->get('hello');
        $this->assertSame($this->format->reveal(), $format);
    }