Class TransformFactory
Used to retrieve a list of available
public class TransformFactory
- Inheritance
-
TransformFactory
- Inherited Members
Properties
AvailableTransforms
Gets the list of available transforms.
public static IReadOnlyList<Transform> AvailableTransforms { get; }
Property Value
Methods
CreateAssembliesElement()
Creates the root "assemblies" XML element.
public static XElement CreateAssembliesElement()
Returns
FinishAssembliesElement(XElement)
Finishes the assemblies element by supplementing with summary attributes.
public static void FinishAssembliesElement(XElement assembliesElement)
Parameters
assembliesElementXElement
GetXmlTransformers(XunitProject)
Gets the list of XML transformer functions for the given project.
public static List<Action<XElement>> GetXmlTransformers(XunitProject project)
Parameters
projectXunitProjectThe project to get transforms for.
Returns
Transform(string, XElement, string)
Runs the transformation for the given ID and XML, and writes it to the given output file.
public static void Transform(string id, XElement assembliesElement, string outputFileName)