public inbox for mauve-discuss@sourceware.org
 help / color / mirror / Atom feed
* RFC: fix for Mauve test javax/swing/Border/TitledBorder/constructors.java
@ 2011-09-02 15:31 Pavel Tisnovsky
  2011-09-07  2:39 ` Dr Andrew John Hughes
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Tisnovsky @ 2011-09-02 15:31 UTC (permalink / raw)
  To: mauve-discuss

Greetings,

here's fix for another Mauve test. In the test
"javax/swing/Border/TitledBorder/constructors.java" the position of the title in
the border should be compared with the constant TitledBorder.DEFAULT_POSITION,
not with TitledBorder.TOP, at least in cases when following constructors are used:

TitledBorder(Border border)
TitledBorder(Border border, String title)
TitledBorder(String title)

(there exist three other constructors where title position can be explicitly
specified, but the fix changes only test cases which use the previous three
constructors).

Here's proposed fix for the test:

--- javax/swing/border/Border/TitledBorder/constructors.java    2006-02-01
15:14:22.000000000 +0100
+++ javax/swing/border/Border/TitledBorder/constructors.java    2011-09-02
16:37:19.000000000 +0200
@@ -77,7 +77,7 @@
     harness.check(tb.getTitleColor(), c);
     Font f = UIManager.getLookAndFeelDefaults().getFont("TitledBorder.font");
     harness.check(tb.getTitleFont(), f);
-    harness.check(tb.getTitlePosition(), TitledBorder.TOP);
+    harness.check(tb.getTitlePosition(), TitledBorder.DEFAULT_POSITION);
     harness.check(tb.getTitleJustification(), TitledBorder.LEADING);

     tb = new TitledBorder((Border) null);
@@ -98,7 +98,7 @@
     harness.check(tb.getTitleColor(), c);
     Font f = UIManager.getLookAndFeelDefaults().getFont("TitledBorder.font");
     harness.check(tb.getTitleFont(), f);
-    harness.check(tb.getTitlePosition(), TitledBorder.TOP);
+    harness.check(tb.getTitlePosition(), TitledBorder.DEFAULT_POSITION);
     harness.check(tb.getTitleJustification(), TitledBorder.LEADING);

     tb = new TitledBorder((Border) null, "XYZ");
@@ -202,7 +202,7 @@
     harness.check(tb.getTitleColor(), c);
     Font f = UIManager.getLookAndFeelDefaults().getFont("TitledBorder.font");
     harness.check(tb.getTitleFont(), f);
-    harness.check(tb.getTitlePosition(), TitledBorder.TOP);
+    harness.check(tb.getTitlePosition(), TitledBorder.DEFAULT_POSITION);
     harness.check(tb.getTitleJustification(), TitledBorder.LEADING);

     tb = new TitledBorder((String) null);
~


Can anybody please review this change?

Thank you in advance,
Pavel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-09-14  9:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-02 15:31 RFC: fix for Mauve test javax/swing/Border/TitledBorder/constructors.java Pavel Tisnovsky
2011-09-07  2:39 ` Dr Andrew John Hughes
2011-09-07 12:53   ` Pavel Tisnovsky
2011-09-14  8:55     ` Pavel Tisnovsky
2011-09-14  9:11       ` Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).