Exemplo n.º 1
0
 public function testCanCreateAndDeleteLogGroup()
 {
     $this->logs->createLogGroup(array('logGroupName' => 'foo'));
     $logGroups = $this->logs->getIterator('DescribeLogGroups');
     $logGroups = iterator_to_array($logGroups);
     $this->assertCount(1, $logGroups);
     $this->logs->deleteLogGroup(array('logGroupName' => 'foo'));
     $logGroups = $this->logs->getIterator('DescribeLogGroups');
     $logGroups = iterator_to_array($logGroups);
     $this->assertCount(0, $logGroups);
 }