TestTimberImage::get_post_with_image PHP Méthode

get_post_with_image() public méthode

public get_post_with_image ( )
    public function get_post_with_image()
    {
        $pid = $this->factory->post->create();
        $iid = self::get_image_attachment($pid);
        add_post_meta($pid, '_thumbnail_id', $iid, true);
        $post = new TimberPost($pid);
        return $post;
    }