public function testSetProperties()
 {
     $properties = [new Property(1, 1, 1), new Property(2, 2, 2), new Property(3, 3, 3)];
     $this->request->setProperties($properties);
     $this->assertSame($properties, $this->request->getProperties());
 }