main
 1using System.Reflection;
 2
 3namespace Spec.Dox.Domain
 4{
 5    public interface ITestSpecification
 6    {
 7        string Name { get; }
 8    }
 9
10    public class TestSpecification : ITestSpecification
11    {
12        public TestSpecification(MethodInfo method)
13        {
14            Name = method.Name;
15        }
16
17        public string Name { get; private set; }
18    }
19}