AwsInspector\Tests\RegistryTest::getReturnsExpectedString PHP Method

getReturnsExpectedString() public method

    public function getReturnsExpectedString()
    {
        $expectedValue = 'My String';
        \AwsInspector\Registry::set('key_phpunit_getReturnsExpectedString', $expectedValue);
        $value = \AwsInspector\Registry::get('key_phpunit_getReturnsExpectedString');
        $this->assertSame($expectedValue, $value);
    }