Neos\Flow\Tests\Unit\Core\ApplicationContextTest::contextStringCanBeSetInConstructorAndReadByCallingToString PHP 메소드

contextStringCanBeSetInConstructorAndReadByCallingToString() 공개 메소드

    public function contextStringCanBeSetInConstructorAndReadByCallingToString($allowedContext)
    {
        $context = new ApplicationContext($allowedContext);
        $this->assertSame($allowedContext, (string) $context);
    }