public bool ShouldScore(QASystem tis, TDSQASystemAPI.TestResults.XMLAdapter adapter, TDSQASystemAPI.TestResults.TestResult tr, TDSQASystemAPI.Config.ProjectMetaData projectMetaData, ITISExtenderState state)
 {
     // score if it's not a reset or an opp with items still requiring scores (operational, selected, not dropped, and not marked as notForScoring)
     return(!tr.Opportunity.Status.Equals("reset", StringComparison.InvariantCultureIgnoreCase) &&
            !tr.HasItemsRequiringHandscores(TestResult.ItemOperationalStatus.Operational, true, true, true));
 }