* @param testMethod The test method of interest
*
* @return A list containing the processor options to be used for this test
*/
private List<String> getProcessorOptions() {
ProcessorOption processorOption = method.getAnnotation( ProcessorOption.class );
if ( processorOption == null ) {
processorOption = method.getMethod().getDeclaringClass().getAnnotation( ProcessorOption.class );
}