Class AccordionTester
-
- All Implemented Interfaces:
public class AccordionTester<T extends Accordion> extends ComponentTester<T>
-
-
Constructor Summary
Constructors Constructor Description AccordionTester(T component)Wrap given component for testing.
-
Method Summary
Modifier and Type Method Description voidopenDetails(String summary)Open the accordion with the given summary. booleanisOpen(String summary)Check if accordion with the summary is open. AccordionPanelgetPanel(String summary)Get the panel with the summary. booleanhasPanel(String summary)Check if a panel for summary exists in accordion. -
-
Constructor Detail
-
AccordionTester
AccordionTester(T component)
Wrap given component for testing.- Parameters:
component- target component
-
-
Method Detail
-
openDetails
void openDetails(String summary)
Open the accordion with the given summary.
- Parameters:
summary- summary of accordion panel
-
isOpen
boolean isOpen(String summary)
Check if accordion with the summary is open.
- Parameters:
summary- summary of accordion panel- Returns:
trueif panel is open
-
getPanel
AccordionPanel getPanel(String summary)
Get the panel with the summary. Throws if panel is not open.
- Parameters:
summary- summary of accordion panel- Returns:
AccordionPanelfor the given summary
-
-
-
-