private static final String TEXT = "This is some text.";
@Test
public void testPaint() {
JLabel truncatingLabel = new TruncatingLabel();
JLabel plainLabel = new JLabel();
truncatingLabel.setText(TEXT);
plainLabel.setText(TEXT);
@SuppressWarnings("serial")//Harleigh108: this removes the warning received when we build with respect to java 7:for JPanel
JPanel testPanel = new JPanel() {
public int getWidth() {