本文整理汇总了PHP中LimeTest::comment方法的典型用法代码示例。如果您正苦于以下问题:PHP LimeTest::comment方法的具体用法?PHP LimeTest::comment怎么用?PHP LimeTest::comment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LimeTest
的用法示例。
在下文中一共展示了LimeTest::comment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: InvalidArgumentException
continue;
}
$test = file_get_contents($file->getRealpath());
if (!preg_match('/--TEST--\\s*(.*?)\\s*((?:--TEMPLATE(?:\\(.*?\\))?--(?:.*?))+)--DATA--.*?--EXPECT--.*/s', $test, $match)) {
throw new InvalidArgumentException(sprintf('Test "%s" is not valid.', str_replace($fixturesDir . '/', '', $file)));
}
$prefix = rand(1, 999999999);
$message = $match[1];
$templates = array();
preg_match_all('/--TEMPLATE(?:\\((.*?)\\))?--(.*?)(?=\\-\\-TEMPLATE|$)/s', $match[2], $matches, PREG_SET_ORDER);
foreach ($matches as $match) {
$templates[$prefix . '_' . ($match[1] ? $match[1] : 'index.twig')] = $match[2];
}
$loader = new Twig_Loader_Var($templates, $prefix);
$twig = new Twig_Environment($loader, array('trim_blocks' => true));
$twig->addExtension(new Twig_Extension_Escaper());
$template = $twig->loadTemplate($prefix . '_index.twig');
preg_match_all('/--DATA--(.*?)--EXPECT--(.*?)(?=\\-\\-DATA\\-\\-|$)/s', $test, $matches, PREG_SET_ORDER);
foreach ($matches as $match) {
$output = trim($template->render(eval($match[1] . ';')), "\n ");
$expected = trim($match[2], "\n ");
$t->is($output, $expected, $message);
if ($output != $expected) {
$t->comment('Compiled template that failed:');
foreach (array_keys($templates) as $name) {
list($source, ) = $loader->getSource($name);
$t->comment($twig->compile($twig->parse($twig->tokenize($source))));
}
}
}
}