/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. using System;
  7. namespace NUnit.Core
  8. {
  9. /// <summary>
  10. /// TestAssembly is a TestSuite that represents the execution
  11. /// of tests in a managed assembly.
  12. /// </summary>
  13. public class ProjectRootSuite : TestSuite
  14. {
  15. /// <summary>
  16. /// Initializes a new instance of the <see cref="ProjectRootSuite"/> class.
  17. /// </summary>
  18. /// <param name="path">The path.</param>
  19. public ProjectRootSuite(string path) : base(path) { }
  20. /// <summary>
  21. /// Gets the type of the test.
  22. /// </summary>
  23. public override string TestType
  24. {
  25. get { return "Project"; }
  26. }
  27. }
  28. }