ArrayTest.php in Zircon Profile 8
File
vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php
View source
<?php
class Twig_Tests_Loader_ArrayTest extends PHPUnit_Framework_TestCase {
public function testGetSource() {
$loader = new Twig_Loader_Array(array(
'foo' => 'bar',
));
$this
->assertEquals('bar', $loader
->getSource('foo'));
}
public function testGetSourceWhenTemplateDoesNotExist() {
$loader = new Twig_Loader_Array(array());
$loader
->getSource('foo');
}
public function testGetCacheKey() {
$loader = new Twig_Loader_Array(array(
'foo' => 'bar',
));
$this
->assertEquals('bar', $loader
->getCacheKey('foo'));
}
public function testGetCacheKeyWhenTemplateDoesNotExist() {
$loader = new Twig_Loader_Array(array());
$loader
->getCacheKey('foo');
}
public function testSetTemplate() {
$loader = new Twig_Loader_Array(array());
$loader
->setTemplate('foo', 'bar');
$this
->assertEquals('bar', $loader
->getSource('foo'));
}
public function testIsFresh() {
$loader = new Twig_Loader_Array(array(
'foo' => 'bar',
));
$this
->assertTrue($loader
->isFresh('foo', time()));
}
public function testIsFreshWhenTemplateDoesNotExist() {
$loader = new Twig_Loader_Array(array());
$loader
->isFresh('foo', time());
}
public function testTemplateReference() {
$name = new Twig_Test_Loader_TemplateReference('foo');
$loader = new Twig_Loader_Array(array(
'foo' => 'bar',
));
$loader
->getCacheKey($name);
$loader
->getSource($name);
$loader
->isFresh($name, time());
$loader
->setTemplate($name, 'foobar');
}
}
class Twig_Test_Loader_TemplateReference {
private $name;
public function __construct($name) {
$this->name = $name;
}
public function __toString() {
return $this->name;
}
}