mirror of
https://github.com/mosbth/cimage.git
synced 2025-05-30 12:20:28 +02:00
35 lines
547 B
Plaintext
35 lines
547 B
Plaintext
<?php
|
|
// Include config for all testcases
|
|
include __DIR__ . "/config.php";
|
|
|
|
|
|
|
|
// The title of the test case
|
|
$title = "Testing issue 60 - skip original";
|
|
|
|
|
|
|
|
// Provide a short description of the testcase.
|
|
$description = "Always use the original if suitable, use skip-original to force using the cached version.";
|
|
|
|
|
|
|
|
// Use these images in the test
|
|
$images = array(
|
|
'car.png',
|
|
);
|
|
|
|
|
|
|
|
// For each image, apply these testcases
|
|
$testcase = array(
|
|
'',
|
|
'&so',
|
|
);
|
|
|
|
|
|
|
|
// Apply testcases and present results
|
|
include __DIR__ . "/template.php";
|
|
|