/**
  * Tests if construct set all values properly
  */
 public function testConstruct()
 {
     $mlProperty = new MLProperty(['default' => 'test default', 'en' => 'test en', 'bg' => 'test bg']);
     $this->assertEquals(['default' => 'test default', 'en' => 'test en', 'bg' => 'test bg'], $mlProperty->getValues(), 'MLProperty construct does not set all values correctly.');
 }