use of com.sldeditor.ui.legend.option.LegendOptionDataUpdateInterface in project sldeditor by robward-scisys.
the class LegendOptionPanelTest method testLegendOptionPanel.
/**
* Test method for {@link com.sldeditor.ui.legend.option.LegendOptionPanel#LegendOptionPanel()}.
*/
@Test
public void testLegendOptionPanel() {
LegendOptionPanel testObj = new LegendOptionPanel();
testObj.addListener(new LegendOptionDataUpdateInterface() {
@Override
public void updateLegendOptionData(LegendOptionData data) {
}
});
LegendOptionData newOptionData = new LegendOptionData();
testObj.updateData(newOptionData);
LegendOptionData actualData = testObj.getData();
assertEquals(actualData, newOptionData);
}
Aggregations