test TestLoop on Tpex

This commit is contained in:
Manuel Raynaud
2013-03-18 10:57:25 +01:00
parent 8aaac2c5a2
commit 519d100d54
4 changed files with 25 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace Test\TestLoop;
use Thelia\Tpex\Element\TestLoop\BaseTestLoop;
class Equal extends BaseTestLoop
{
public function exec($variable, $value)
{
return $variable == $value;
}
}