/src/NUnit/core/ProjectRootSuite.cs
C# | 31 lines | 12 code | 3 blank | 16 comment | 0 complexity | 7798ad4a2ba6303e6b848d889d58afb5 MD5 | raw file
1// **************************************************************** 2// This is free software licensed under the NUnit license. You 3// may obtain a copy of the license as well as information regarding 4// copyright ownership at http://nunit.org. 5// **************************************************************** 6 7using System; 8 9namespace NUnit.Core 10{ 11 /// <summary> 12 /// TestAssembly is a TestSuite that represents the execution 13 /// of tests in a managed assembly. 14 /// </summary> 15 public class ProjectRootSuite : TestSuite 16 { 17 /// <summary> 18 /// Initializes a new instance of the <see cref="ProjectRootSuite"/> class. 19 /// </summary> 20 /// <param name="path">The path.</param> 21 public ProjectRootSuite(string path) : base(path) { } 22 23 /// <summary> 24 /// Gets the type of the test. 25 /// </summary> 26 public override string TestType 27 { 28 get { return "Project"; } 29 } 30 } 31}