Amido.PreProcessor.Cmd.Tests.PreProcessRunnerTests.GetManifestXml C# (CSharp) Method

GetManifestXml() private method

private GetManifestXml ( IList groups ) : string
groups IList
return string
        private string GetManifestXml(IList<string> groups)
        {
            StringBuilder groupsXml = new StringBuilder();
            foreach (var item in groups)
            {
                groupsXml.AppendLine(item);
            }

            return string.Format(manifestXmlMask, groupsXml.ToString());
        }