/**
  * @covers \phpDocumentor\Transformer\Template\Collection::getTransformations
  */
 public function testIfAllTransformationsCanBeRetrieved()
 {
     // Arrange
     $transformation1 = $this->givenAnEmptyTransformation();
     $transformation2 = $this->givenAnEmptyTransformation();
     $transformation3 = $this->givenAnEmptyTransformation();
     $this->whenThereIsATemplateWithNameAndTransformations('template1', array($transformation1, $transformation2));
     $this->whenThereIsATemplateWithNameAndTransformations('template2', array($transformation3));
     // Act
     $result = $this->fixture->getTransformations();
     // Assert
     $this->assertCount(3, $result);
     $this->assertSame(array($transformation1, $transformation2, $transformation3), $result);
 }