JD\Cloudder\Test\CloudinaryWrapperTest::it_should_returns_image_url_when_calling_show_private_url PHP Method

it_should_returns_image_url_when_calling_show_private_url() public method

    public function it_should_returns_image_url_when_calling_show_private_url()
    {
        // given
        $filename = 'filename';
        $this->cloudinary->shouldReceive('private_download_url')->once()->with($filename, 'png', array());
        // when
        $this->cloudinary_wrapper->showPrivateUrl($filename, 'png');
    }
CloudinaryWrapperTest