/src/NUnit/interfaces/Extensibility/TestFramework.cs
C# | 42 lines | 19 code | 4 blank | 19 comment | 0 complexity | b3beccaf6831c8551cbeb92746accfab 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.Extensibility 10{ 11 /// <summary> 12 /// Summary description for TestFramework. 13 /// </summary> 14 [Serializable] 15 public class TestFramework 16 { 17 #region Instance Fields 18 /// <summary> 19 /// The name of the framework 20 /// </summary> 21 public string Name; 22 23 /// <summary> 24 /// The file name of the assembly that defines the framwork 25 /// </summary> 26 public string AssemblyName; 27 #endregion 28 29 #region Constructor 30 /// <summary> 31 /// Constructs a TestFramwork object given its name and assembly name. 32 /// </summary> 33 /// <param name="frameworkName"></param> 34 /// <param name="assemblyName"></param> 35 public TestFramework( string frameworkName, string assemblyName ) 36 { 37 this.Name = frameworkName; 38 this.AssemblyName = assemblyName; 39 } 40 #endregion 41 } 42}