/**
  * Gets the join condition type for the given join identifier
  *
  * @param string $joinId
  *
  * @return string
  */
 protected function getJoinConditionType($joinId)
 {
     return $this->joinIdHelper->getJoinConditionType($joinId);
 }
 /**
  * @dataProvider getJoinConditionTypeProvider
  */
 public function testGetJoinConditionType($joinId, $expected)
 {
     $this->assertEquals($expected, $this->helper->getJoinConditionType($joinId));
 }