Exemple #1
0
 /**
  * Test that plugin names are omitted from property()
  *
  * @return void
  */
 public function testPropertyNoPlugin()
 {
     $mock = $this->getMockBuilder('Cake\\ORM\\Table')->disableOriginalConstructor()->getMock();
     $config = ['sourceTable' => $this->article, 'targetTable' => $mock];
     $association = new BelongsToMany('Contacts.Tags', $config);
     $this->assertEquals('tags', $association->property());
 }
 /**
  * Test that plugin names are omitted from property()
  *
  * @return void
  */
 public function testPropertyNoPlugin()
 {
     $mock = $this->getMock('Cake\\ORM\\Table', [], [], '', false);
     $config = ['sourceTable' => $this->article, 'targetTable' => $mock];
     $association = new BelongsToMany('Contacts.Tags', $config);
     $this->assertEquals('tags', $association->property());
 }