1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Gedmo\Blameable;
- use Doctrine\Common\EventManager;
- use Tool\BaseTestCaseORM;
- use Doctrine\Common\Util\Debug,
- Blameable\Fixture\Entity\WithoutInterface;
- /**
- * These are tests for Blameable behavior
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class NoInterfaceTest extends BaseTestCaseORM
- {
- const FIXTURE = "Blameable\\Fixture\\Entity\\WithoutInterface";
- protected function setUp()
- {
- parent::setUp();
- $evm = new EventManager;
- $blameableListener = new BlameableListener;
- $blameableListener->setUserValue('testuser');
- $evm->addEventSubscriber($blameableListener);
- $this->getMockSqliteEntityManager($evm);
- }
- public function testBlameableNoInterface()
- {
- $test = new WithoutInterface();
- $test->setTitle('Test');
- $this->em->persist($test);
- $this->em->flush();
- $this->em->clear();
- $test = $this->em->getRepository(self::FIXTURE)->findOneByTitle('Test');
- $this->assertEquals('testuser', $test->getCreated());
- $this->assertEquals('testuser', $test->getUpdated());
- }
- protected function getUsedEntityFixtures()
- {
- return array(
- self::FIXTURE,
- );
- }
- }
|