| 1 | <?php |
||
| 15 | class TestMethodManager implements RenderableInterface, MethodInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | use TemplateTrait; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @Assert\NotNull(message="Method for test can not be empty!") |
||
| 22 | * @Assert\Valid() |
||
| 23 | * @var MethodManager |
||
| 24 | */ |
||
| 25 | private $method = null; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Retrun Method Manager |
||
| 29 | * |
||
| 30 | * @return MethodManager |
||
| 31 | */ |
||
| 32 | public function getMethod() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Set Method Manager |
||
| 39 | * |
||
| 40 | * @param MethodManager $method |
||
| 41 | */ |
||
| 42 | public function setMethod(MethodManager $method) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Return prepared test method name |
||
| 49 | */ |
||
| 50 | public function getPreparedName() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Return set of tags used in template |
||
| 57 | * |
||
| 58 | * @return array |
||
| 59 | */ |
||
| 60 | public function getTemplateTags() |
||
| 68 | } |
||
| 69 |