Backend\Core\Tests\Engine\DataGridFunctionsTest::test_showImage PHP Method

test_showImage() public method

public test_showImage ( )
    public function test_showImage()
    {
        $path = '/src/Frontend/Files/Media/Backend/01';
        $imageName = 'image-01.jpg';
        $title = 'cowboy henk';
        $url = 'http://www.test.com/private/nl/edit?id=1';
        $width = 100;
        $height = 100;
        self::assertEquals('<a href="' . $url . '" title="' . $title . '"><img src="' . $path . '/' . $imageName . '" alt="' . $title . '" width="' . $width . '" height="' . $height . '" /></a>', DataGridFunctions::showImage($path, $imageName, $title, $url, $width, $height));
        self::assertEquals('<img src="' . $path . '/' . $imageName . '" alt="' . $title . '" />', DataGridFunctions::showImage($path, $imageName, $title));
    }
DataGridFunctionsTest