Пример #1
0
 public function test_Create_Availability_Zone()
 {
     $new = new PublicServer($this->service);
     $new->setAvailabilityZone('AZ1');
     $obj = $new->CreateJson();
     $this->assertEquals('AZ1', $obj->server->availability_zone);
 }
Пример #2
0
 public function test_Create_UserData()
 {
     $new = new PublicServer($this->service);
     $new->user_data = 'foo';
     $obj = $new->createJson();
     $this->assertEquals('foo', $obj->server->user_data);
 }