Sulu\Component\Content\Mapper\Translation\MultipleTranslatedProperties::setStructureType PHP Method

setStructureType() public method

Set the structure type.
public setStructureType ( string $structureType )
$structureType string
    public function setStructureType($structureType)
    {
        $this->structureType = $structureType;
    }

Usage Example

 /**
  * @dataProvider provideGetName
  */
 public function testGetName($structureType, $name, $expectedName)
 {
     $this->properties->setLanguage('de');
     $this->properties->setStructureType($structureType);
     $res = $this->properties->getName($name);
     $this->assertEquals($expectedName, $res);
 }