Ejemplo n.º 1
0
 /** 
  * @covers WindowsAzure\Common\Internal\Atom\Source::getGenerator
  * @covers WindowsAzure\Common\Internal\Atom\Source::setGenerator
  */
 public function testGetSetGenerator()
 {
     // Setup
     $expected = 'testGenerator';
     $source = new Source();
     // Test
     $source->setGenerator($expected);
     $actual = $source->getGenerator();
     // Assert
     $this->assertEquals($expected, $actual);
 }