Пример #1
0
 public function testCopyDomain()
 {
     $value = $this->getColumnDefaultValueMock();
     $domain = new Domain();
     $domain->setType('FLOAT');
     $domain->setSqlType('DOUBLE');
     $domain->setSize(10);
     $domain->setScale(2);
     $domain->setName('Mapping between FLOAT and DOUBLE');
     $domain->setDescription('Some description');
     $domain->setDefaultValue($value);
     $newDomain = new Domain();
     $newDomain->copy($domain);
     $this->assertSame('FLOAT', $newDomain->getType());
     $this->assertSame('DOUBLE', $newDomain->getSqlType());
     $this->assertSame(10, $newDomain->getSize());
     $this->assertSame(2, $newDomain->getScale());
     $this->assertSame('Mapping between FLOAT and DOUBLE', $newDomain->getName());
     $this->assertSame('Some description', $newDomain->getDescription());
     $this->assertInstanceOf('Propel\\Generator\\Model\\ColumnDefaultValue', $value);
 }