com.nordstrom.automation.junit.FieldsForAnnotationsAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-foundation Show documentation
Show all versions of junit-foundation Show documentation
This is the foundation framework for JUnit automation
package com.nordstrom.automation.junit;
import java.lang.annotation.Annotation;
import java.util.List;
import java.util.Map;
import org.junit.runners.model.FrameworkField;
/**
* This interface declares an accessor method for the [ {@code Class} → {@code List} ]
* map of {@code org.junit.runners.model.TestClass}.
*/
public interface FieldsForAnnotationsAccessor {
/**
* Get the map that associates annotation types with the fields to which they're attached.
*
* @return mappings from annotation types to lists of annotated fields
*/
Map, List> getFieldsForAnnotations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy