function test_Sites_set()
 {
     //Arrange
     $id = null;
     $services_id = null;
     $name = 'hotel deluxe';
     $analytics_profile = '5271170';
     $test_site = new Sites($id, $services_id, $name, $analytics_profile);
     //Act
     $test_site->setName('hotel max');
     $result1 = $test_site->getName();
     $test_site->setAnalyticsProfile('5271201');
     $result2 = $test_site->getAnalyticsProfile();
     //Assert
     $this->assertEquals('hotel max', $result1);
     $this->assertEquals('5271201', $result2);
 }