Lcobucci\JWT\Signer\KeyTest::constructShouldBeAbleToConfigureContentFromFile PHP 메소드

constructShouldBeAbleToConfigureContentFromFile() 공개 메소드

    public function constructShouldBeAbleToConfigureContentFromFile()
    {
        $key = new Key('file://' . vfsStream::url('root/test.pem'));
        self::assertAttributeEquals('testing', 'content', $key);
        self::assertAttributeEquals(null, 'passphrase', $key);
    }