namespace Symfony\Bridge\Twig\Tests\NodeVisitor;
use PHPUnit\Framework\TestCase;
use Symfony\Bridge\Twig\NodeVisitor\Scope;
class ScopeTest extends TestCase
{ public function testScopeInitiation() { $scope =
new Scope();
$scope->
enter();
$this->
assertNull($scope->
get('test'
));
}}