Ejemplo n.º 1
0
 public function testSetters()
 {
     $testEntity = new TestEntity();
     $testEntity->setId(self::$testData['id']);
     $testEntity->setName(self::$testData['name']);
     $testEntity->setTestForeignEntity(self::$testData['testForeignEntity']);
     $testEntity->setCollection(self::$testData['collection']);
     $testEntity->setInt(self::$testData['int']);
     $testEntity->setBool(self::$testData['bool']);
     $this->testGetters($testEntity);
 }