AssemblyResult.cs :  » Testing » xUnit.net » Xunit » Sdk » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Testing » xUnit.net 
xUnit.net » Xunit » Sdk » AssemblyResult.cs
using System;
using System.IO;
using System.Xml;

namespace Xunit.Sdk{
    /// <summary>
    /// Contains the test results from an assembly.
    /// </summary>
    [Serializable]
    public class AssemblyResult : CompositeResult
    {
        /// <summary>
        /// Creates a new instance of the <see cref="AssemblyResult"/> class.
        /// </summary>
        /// <param name="assemblyFilename">The filename of the assembly</param>
        public AssemblyResult(string assemblyFilename) : this(assemblyFilename, null) { }

        /// <summary>
        /// Creates a new instance of the <see cref="AssemblyResult"/> class.
        /// </summary>
        /// <param name="assemblyFilename">The filename of the assembly</param>
        /// <param name="configFilename">The configuration filename</param>
        public AssemblyResult(string assemblyFilename, string configFilename)
        {
            Filename = Path.GetFullPath(assemblyFilename);

            if (configFilename != null)
                ConfigFilename = Path.GetFullPath(configFilename);
        }

        /// <summary>
        /// Gets the fully qualified filename of the configuration file.
        /// </summary>
        public string ConfigFilename { get; private set; }

        /// <summary>
        /// Gets the directory where the assembly resides.
        /// </summary>
        public string Directory
        {
            get { return Path.GetDirectoryName(Filename); }
        }

        /// <summary>
        /// Gets the number of failed results.
        /// </summary>
        public int FailCount { get; private set; }

        /// <summary>
        /// Gets the fully qualified filename of the assembly.
        /// </summary>
        public string Filename { get; private set; }

        /// <summary>
        /// Gets the number of passed results.
        /// </summary>
        public int PassCount { get; private set; }

        /// <summary>
        /// Gets the number of skipped results.
        /// </summary>
        public int SkipCount { get; private set; }

        /// <summary>
        /// Converts the test result into XML that is consumed by the test runners.
        /// </summary>
        /// <param name="parentNode">The parent node.</param>
        /// <returns>The newly created XML node.</returns>
        public override XmlNode ToXml(XmlNode parentNode)
        {
            XmlNode assemblyNode = XmlUtility.AddElement(parentNode, "assembly");
            XmlUtility.AddAttribute(assemblyNode, "name", Filename);
            XmlUtility.AddAttribute(assemblyNode, "run-date", DateTime.Now.ToString("yyyy-MM-dd"));
            XmlUtility.AddAttribute(assemblyNode, "run-time", DateTime.Now.ToString("HH:mm:ss"));

            if (ConfigFilename != null)
                XmlUtility.AddAttribute(assemblyNode, "configFile", ConfigFilename);

            foreach (ClassResult child in Results)
            {
                XmlNode childNode = child.ToXml(assemblyNode);

                PassCount += child.PassCount;
                FailCount += child.FailCount;
                SkipCount += child.SkipCount;
                ExecutionTime += child.ExecutionTime;
            }

            AddTime(assemblyNode);
            XmlUtility.AddAttribute(assemblyNode, "total", PassCount + FailCount + SkipCount);
            XmlUtility.AddAttribute(assemblyNode, "passed", PassCount);
            XmlUtility.AddAttribute(assemblyNode, "failed", FailCount);
            XmlUtility.AddAttribute(assemblyNode, "skipped", SkipCount);
            XmlUtility.AddAttribute(assemblyNode, "environment", String.Format("{0}-bit .NET {1}", IntPtr.Size * 8, Environment.Version));

            return assemblyNode;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.