Skip to content

Commit

Permalink
[DDC-93] Started ValueObjectsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Mar 26, 2013
1 parent a4db7c8 commit 02d34bb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

namespace Doctrine\Tests\ORM\Functional;

class ValueObjectsTest extends \Doctrine\Tests\OrmFunctionalTestCase
{
public function setUp()
{
}
}

/**
* @Entity
*/
class DDC93Person
{
/** @Id @GeneratedValue @Column(type="integer") */
public $id;

/** @Column(type="string") */
public $name;

/** @Embedded */
public $address;
}

0 comments on commit 02d34bb

Please sign in to comment.