public function testAddGetNode()
 {
     $newVariant = new Variant('new');
     $this->tree->add($newVariant, 'default');
     $this->assertEquals($newVariant, $this->tree->getNode('new')->getContent());
 }