using System; namespace MbUnit.ReSharperRunner.Explorer { public class TestClassInfo { private string className; private TestMethodInfo methods; public string ClassName { get { return className; } set { className = value; } } public TestMethodInfo Methods { get { return methods; } set { methods = value; } } } public class TestMethodInfo { private string methodName; private TestAttributeInfo[] attributes; public string MethodName { get { return methodName; } set { methodName = value; } } public TestAttributeInfo[] Attributes { get { return attributes; } set { attributes = value; } } } public class TestAttributeInfo { private string name; private string parameterNames; public string Name { get { return name; } set { name = value; } } public string ParameterNames { get { return parameterNames; } set { parameterNames = value; } } } }