1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00

Update test according to @Ocramius notes

This commit is contained in:
Pavel Batanov 2015-01-22 18:31:15 +03:00 committed by Marco Pivetta
parent e36c7b0c2a
commit 981cebbf4c
3 changed files with 4 additions and 18 deletions

View file

@ -8,6 +8,7 @@ namespace Doctrine\Tests\Models\DDC3346;
*/ */
class DDC3346Article class DDC3346Article
{ {
const CLASSNAME = 'Doctrine\Tests\Models\DDC3346\DDC3346Article';
/** /**
* @Id * @Id
* @Column(type="integer") * @Column(type="integer")
@ -19,10 +20,6 @@ class DDC3346Article
* @JoinColumn(name="user_id", referencedColumnName="id") * @JoinColumn(name="user_id", referencedColumnName="id")
*/ */
public $user; public $user;
/**
* @Column(type="text")
*/
public $text;
public function setAuthor(DDC3346Author $author) public function setAuthor(DDC3346Author $author)
{ {

View file

@ -8,23 +8,16 @@ namespace Doctrine\Tests\Models\DDC3346;
*/ */
class DDC3346Author class DDC3346Author
{ {
const CLASSNAME = 'Doctrine\Tests\Models\DDC3346\DDC3346Author';
/** /**
* @Id @Column(type="integer") * @Id @Column(type="integer")
* @GeneratedValue * @GeneratedValue
*/ */
public $id; public $id;
/**
* @Column(type="string", length=50, nullable=true)
*/
public $status;
/** /**
* @Column(type="string", length=255, unique=true) * @Column(type="string", length=255, unique=true)
*/ */
public $username; public $username;
/**
* @Column(type="string", length=255)
*/
public $name;
/** /**
* @OneToMany(targetEntity="DDC3346Article", mappedBy="user", fetch="EAGER", cascade={"detach"}) * @OneToMany(targetEntity="DDC3346Article", mappedBy="user", fetch="EAGER", cascade={"detach"})
*/ */

View file

@ -16,8 +16,8 @@ class DDC3346Test extends \Doctrine\Tests\OrmFunctionalTestCase
$this->setUpEntitySchema( $this->setUpEntitySchema(
array( array(
'Doctrine\Tests\Models\DDC3346\DDC3346Article', DDC3346Author::CLASSNAME,
'Doctrine\Tests\Models\DDC3346\DDC3346Author', DDC3346Article::CLASSNAME,
) )
); );
} }
@ -25,16 +25,12 @@ class DDC3346Test extends \Doctrine\Tests\OrmFunctionalTestCase
public function testFindOneByWithEagerFetch() public function testFindOneByWithEagerFetch()
{ {
$user = new DDC3346Author(); $user = new DDC3346Author();
$user->name = "Buggy Woogy";
$user->username = "bwoogy"; $user->username = "bwoogy";
$user->status = "active";
$article1 = new DDC3346Article(); $article1 = new DDC3346Article();
$article1->text = "First content";
$article1->setAuthor($user); $article1->setAuthor($user);
$article2 = new DDC3346Article(); $article2 = new DDC3346Article();
$article2->text = "Second content";
$article2->setAuthor($user); $article2->setAuthor($user);
$this->_em->persist($user); $this->_em->persist($user);