gmarokov/dotnet-trx2sonar

View on GitHub
TrxToSonar/Model/Trx/UnitTest.cs

Summary

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

namespace TrxToSonar.Model.Trx
{
    public class UnitTest
    {
        [XmlAttribute(AttributeName = "name")]
        public string Name { get; set; }

        [XmlAttribute(AttributeName = "storage")]
        public string Storage { get; set; }

        [XmlAttribute(AttributeName = "id")]
        public string Id { get; set; }

        [XmlElement(ElementName = "Execution")]
        public Execution Execution { get; set; }

        [XmlElement(ElementName = "TestMethod")]
        public TestMethod TestMethod { get; set; }
    }
}