using System; namespace MbUnit.ReSharperRunner.MbUnit { public class MbUnitTestMethodAction : MbUnitTestFixtureAction { private readonly string methodName; public MbUnitTestMethodAction(string assemblyName, string typeName, string methodName) : base(assemblyName, typeName) { this.methodName = methodName; } public MbUnitTestMethodAction(string typeName, string methodName) : this("", typeName,methodName) { } public string MethodName { get { return methodName; } } } }