public void EntryPointServiceTemplate_Returns_EntryDefinitions_Template()
        {
            // Act
            var toscaCloudServiceArchive =
                new ToscaCloudServiceArchive(new ToscaMetadata {
                EntryDefinitions = "tosca1.yaml"
            });

            toscaCloudServiceArchive.AddToscaServiceTemplate("tosca1.yaml",
                                                             new ToscaServiceTemplate {
                Description = "tosca1 description"
            });
            toscaCloudServiceArchive.AddToscaServiceTemplate("base.yaml",
                                                             new ToscaServiceTemplate {
                Description = "base description"
            });

            // Assert
            toscaCloudServiceArchive.GetEntryPointServiceTemplate().Description.Should().Be("tosca1 description");
        }