Neos\Eel\Tests\Unit\CompilingEvaluatorTest::doubleQuotedStringLiteralVariablesAreEscaped PHP Method

doubleQuotedStringLiteralVariablesAreEscaped() public method

    public function doubleQuotedStringLiteralVariablesAreEscaped()
    {
        $context = new Context('hidden');
        $this->assertEvaluated('some {$context->unwrap()} string with \'quoted stuff\'', '"some {$context->unwrap()} string with \'quoted stuff\'"', $context);
    }