use of com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails in project sldeditor by robward-scisys.
the class ExternalGraphicDetailsTest method testSetEnabled.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails#setEnabled(boolean)}.
*/
@Test
public void testSetEnabled() {
ExternalGraphicDetails panel = new ExternalGraphicDetails(null);
panel.setEnabled(true);
assertTrue(panel.isEnabled());
panel.setEnabled(false);
assertFalse(panel.isEnabled());
}
use of com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails in project sldeditor by robward-scisys.
the class ExternalGraphicDetailsTest method testRevertToDefaultValue.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails#revertToDefaultValue()}.
*/
@Test
public void testRevertToDefaultValue() {
ExternalGraphicDetails panel = new ExternalGraphicDetails(null);
panel.revertToDefaultValue();
}
use of com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails in project sldeditor by robward-scisys.
the class ExternalGraphicDetailsTest method testPreLoadSymbol.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails#preLoadSymbol()}.
*/
@Test
public void testPreLoadSymbol() {
ExternalGraphicDetails panel = new ExternalGraphicDetails(null);
panel.preLoadSymbol();
}
use of com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails in project sldeditor by robward-scisys.
the class ExternalGraphicDetailsTest method testIsDataPresent.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails#isDataPresent()}.
*/
@Test
public void testIsDataPresent() {
ExternalGraphicDetails panel = new ExternalGraphicDetails(null);
assertTrue(panel.isDataPresent());
}
use of com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails in project sldeditor by robward-scisys.
the class ExternalGraphicDetailsTest method testGetFieldDataManager.
/**
* Test method for
* {@link com.sldeditor.ui.detail.config.symboltype.externalgraphic.ExternalGraphicDetails#getFieldDataManager()}.
*/
@Test
public void testGetFieldDataManager() {
ExternalGraphicDetails panel = new ExternalGraphicDetails(null);
assertNotNull(panel.getFieldDataManager());
}
Aggregations