private bool MethodHasIssue(IMethodElement method)
        {
            if (!method.IsTestMethod())
                return false;

            var assert = GetAssert(method);
            var exceptionAttribute = GetExpectedExceptionAttribute(method);
            return assert == null && exceptionAttribute == null;
        }