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