NUnitGoCore.NunitGoItems.NunitGoTest.NunitGoTest C# (CSharp) Method

NunitGoTest() public method

public NunitGoTest ( ) : System
return System
        public NunitGoTest()
        {
            Name = string.Empty;
            FullName = string.Empty;
            ClassName = string.Empty;
            ProjectName = string.Empty;
            TestDuration = 0.0;
            DateTimeStart = new DateTime();
            DateTimeFinish = new DateTime();
            TestStackTrace = string.Empty;
            TestMessage = string.Empty;
            Result = "Unknown";
            Guid = Guid.NewGuid();
            TestHrefRelative = string.Empty;
            TestHrefAbsolute = string.Empty;
            LogHref = string.Empty;
            AttachmentsPath = string.Empty;
            HasOutput = false;
            Screenshots = new List<Screenshot>();
            Events = new List<TestEvent>();
        }