public bool IsParameterizedMethod(IProject project, string className, string methodName)
        {
            var conventionInfo = GetConventionInfo(project.GetOutputFilePath().FullPath);
            if (conventionInfo == null)
                return false;

            return conventionInfo.IsParameterizedTestMethod(className, methodName);
        }
        private bool IsValidTestClass(IProject project, string className)
        {
            var conventionInfo = GetConventionInfo(project.GetOutputFilePath().FullPath);
            if (conventionInfo == null)
                return false;

            return conventionInfo.IsTestClass(className);
        }