gmarokov/dotnet-trx2sonar

View on GitHub
TrxToSonar/Model/Sonar/File.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Collections.Generic;
using System.Xml.Serialization;

namespace TrxToSonar.Model.Sonar
{
    public class File
    {
        public File()
        {
        }

        public File(string path)
        {
            Path = path;
        }

        [XmlAttribute(AttributeName = "path")]
        public string Path { get; set; }

        [XmlElement("testCase")]
        public List<TestCase> TestCases { get; set; } = new List<TestCase>();
    }
}