szuru/tests/Support/Mockers/PostMocker.php
2014-06-01 13:51:29 +02:00

24 lines
548 B
PHP

<?php
class PostMocker extends AbstractMocker implements IMocker
{
private $tagMocker;
private $testSupport;
public function __construct(
TagMocker $tagMocker,
TestSupport $testSupport)
{
$this->testSupport = $testSupport;
$this->tagMocker = $tagMocker;
}
public function mockSingle()
{
$post = PostModel::spawn();
$post->setType(new PostType(PostType::Image));
$post->setTags([$this->tagMocker->mockSingle()]);
copy($this->testSupport->getPath('image.jpg'), $post->getContentPath());
return PostModel::save($post);
}
}