Skip to content

Commit

Permalink
DDC-1925 - squashing ticket tests into a single file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Jul 19, 2012
1 parent 0a79a47 commit 8ac0903
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 176 deletions.
97 changes: 0 additions & 97 deletions tests/Doctrine/Tests/Models/DDC1925/DDC1925Product.php

This file was deleted.

56 changes: 0 additions & 56 deletions tests/Doctrine/Tests/Models/DDC1925/DDC1925User.php

This file was deleted.

174 changes: 151 additions & 23 deletions tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1925Test.php
Expand Up @@ -2,39 +2,23 @@

namespace Doctrine\Tests\ORM\Functional\Ticket;

use Doctrine\Tests\Models\ECommerce\ECommerceShipping;
use Doctrine\Tests\Models\DDC1925\DDC1925User;
use Doctrine\Tests\Models\DDC1925\DDC1925Product;
use Doctrine\Common\Collections\ArrayCollection;

require_once __DIR__ . '/../../../TestInit.php';

/**
* @group DDC-1925
* @group DDC-1210
*/
class DDC1925Test extends \Doctrine\Tests\OrmFunctionalTestCase
{

/**
* @var \Doctrine\Tests\Models\Quote\User
*/
private $email;

protected function setUp()
{
parent::setUp();

//try {
$this->_schemaTool->createSchema(array(
$this->_em->getClassMetadata('Doctrine\Tests\Models\DDC1925\DDC1925User'),
$this->_em->getClassMetadata('Doctrine\Tests\Models\DDC1925\DDC1925Product'),
));
//} catch(\Exception $e) {
//}

}

public function testIssue()
{
$this->_schemaTool->createSchema(array(
$this->_em->getClassMetadata(__NAMESPACE__ . '\\DDC1925User'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\\DDC1925Product'),
));

$user = new DDC1925User();
$user->setTitle("Test User");
$this->_em->persist($user);
Expand All @@ -51,4 +35,148 @@ public function testIssue()
$this->_em->persist($product);
$this->_em->flush();
}
}

/**
* @Table
* @Entity
*/
class DDC1925Product
{
/**
* @var integer $id
*
* @Column(name="id", type="integer")
* @Id
* @GeneratedValue(strategy="AUTO")
*/
private $id;

/**
* @var string $title
*
* @Column(name="title", type="string", length=255)
*/
private $title;

/**
* @ManyToMany(targetEntity="DDC1925User")
* @JoinTable(
* name="user_purchases",
* joinColumns={@JoinColumn(name="product_id", referencedColumnName="id")},
* inverseJoinColumns={@JoinColumn(name="user_id", referencedColumnName="id")}
* )
*/
private $buyers;

/**
* Default constructor
*/
public function __construct()
{
$this->buyers = new ArrayCollection();
}

/**
* @return integer
*/
public function getId()
{
return $this->id;
}

/**
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}

/**
* Get title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}

/**
* @param string $buyers
*/
public function setBuyers($buyers)
{
$this->buyers = $buyers;
}

/**
* @return string
*/
public function getBuyers()
{
return $this->buyers;
}

/**
* @param DDC1925User $buyer
*/
public function addBuyer(DDC1925User $buyer)
{
$this->buyers[] = $buyer;
}
}

/**
* @Table
* @Entity
*/
class DDC1925User
{
/**
* @var integer
*
* @Column(name="id", type="integer")
* @Id
* @GeneratedValue(strategy="AUTO")
*/
private $id;

/**
* @var string
*
* @Column(name="title", type="string", length=255)
*/
private $title;

/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}

/**
* Set title
*
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}

/**
* Get title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
}

0 comments on commit 8ac0903

Please sign in to comment.