| Conditions | 1 |
| Paths | 1 |
| Total Lines | 37 |
| Code Lines | 27 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 66 | protected function setUp() |
||
| 67 | { |
||
| 68 | $this->data = array( |
||
| 69 | '_identifier' => 'sku', |
||
| 70 | '_table' => 'user', |
||
| 71 | 'id' => '1', |
||
| 72 | 'sku' => 'sku_user', |
||
| 73 | 'name' => 'toto', |
||
| 74 | '_related' => |
||
| 75 | array( |
||
| 76 | 'manyToOne' => |
||
| 77 | array( |
||
| 78 | 'Address' => |
||
| 79 | array( |
||
| 80 | '_relation' => array( |
||
| 81 | 'targetEntity' => 'Address', |
||
| 82 | 'joinColumn' => array( |
||
| 83 | 'name' => 'address_id', |
||
| 84 | 'referencedColumnName' => 'id', |
||
| 85 | ), |
||
| 86 | 'table' => 'address', |
||
| 87 | ), |
||
| 88 | '_data' => |
||
| 89 | array( |
||
| 90 | 'address' => |
||
| 91 | array( |
||
| 92 | '_identifier' => 'id', |
||
| 93 | 'id' => '1', |
||
| 94 | 'postal_code' => '34000', |
||
| 95 | 'city' => 'Montpellier', |
||
| 96 | ), |
||
| 97 | ), |
||
| 98 | ), |
||
| 99 | ), |
||
| 100 | ), |
||
| 101 | ); |
||
| 102 | } |
||
| 103 | } |
||
| 104 |