'203.0.113.1']); /** @var \Symfony\Component\HttpFoundation\RequestStack $stack */ $stack = $this->container->get('request_stack'); $stack->push($request); CommentType::create([ 'id' => 'foo', 'target_entity_type_id' => 'entity_test', ])->save(); $comment = Comment::create(['comment_type' => 'foo']); // Check that the hostname was set correctly. $this->assertEquals('203.0.113.1', $comment->getHostname()); } }