/src/NUnit/interfaces/Extensibility/TestFramework.cs
# · C# · 42 lines · 19 code · 4 blank · 19 comment · 0 complexity · b3beccaf6831c8551cbeb92746accfab MD5 · raw file
- // ****************************************************************
- // This is free software licensed under the NUnit license. You
- // may obtain a copy of the license as well as information regarding
- // copyright ownership at http://nunit.org.
- // ****************************************************************
-
- using System;
-
- namespace NUnit.Core.Extensibility
- {
- /// <summary>
- /// Summary description for TestFramework.
- /// </summary>
- [Serializable]
- public class TestFramework
- {
- #region Instance Fields
- /// <summary>
- /// The name of the framework
- /// </summary>
- public string Name;
-
- /// <summary>
- /// The file name of the assembly that defines the framwork
- /// </summary>
- public string AssemblyName;
- #endregion
-
- #region Constructor
- /// <summary>
- /// Constructs a TestFramwork object given its name and assembly name.
- /// </summary>
- /// <param name="frameworkName"></param>
- /// <param name="assemblyName"></param>
- public TestFramework( string frameworkName, string assemblyName )
- {
- this.Name = frameworkName;
- this.AssemblyName = assemblyName;
- }
- #endregion
- }
- }