/**
* Test property accessors and mutators.
*/
public void testProperties() {
WindowPane windowPane = new WindowPane();
windowPane.setBorder(TestConstants.FILL_IMAGE_BORDER);
assertEquals(TestConstants.FILL_IMAGE_BORDER, windowPane.getBorder());
windowPane.setHeight(TestConstants.EXTENT_200_PX);
assertEquals(TestConstants.EXTENT_200_PX, windowPane.getHeight());
windowPane.setPositionX(TestConstants.EXTENT_100_PX);
assertEquals(TestConstants.EXTENT_100_PX, windowPane.getPositionX());
windowPane.setPositionY(TestConstants.EXTENT_30_PX);
assertEquals(TestConstants.EXTENT_30_PX, windowPane.getPositionY());
windowPane.setTitle("Title!");
assertEquals("Title!", windowPane.getTitle());
windowPane.setTitleBackground(Color.ORANGE);
assertEquals(Color.ORANGE, windowPane.getTitleBackground());
windowPane.setTitleFont(TestConstants.MONOSPACE_12);
assertEquals(TestConstants.MONOSPACE_12, windowPane.getTitleFont());
windowPane.setTitleForeground(Color.PINK);
assertEquals(Color.PINK, windowPane.getTitleForeground());
windowPane.setWidth(TestConstants.EXTENT_500_PX);
assertEquals(TestConstants.EXTENT_500_PX, windowPane.getWidth());
windowPane.setClosable(false);
assertFalse(windowPane.isClosable());
}