*/
private void testExcellentBreakable(TestHarness h)
{
DefaultStyledDocument doc = new DefaultStyledDocument();
Element el = doc.new BranchElement(null, null);
TestFlowView fv = new TestFlowView(el, View.Y_AXIS);
// Create one row and fill it with one oversized testview.
TestFlowView.TestRow row = (TestFlowView.TestRow) fv.createRow();
fv.replace(0, 0, new View[]{row});
row.breakWeight = View.ExcellentBreakWeight;
row.preferred = 200;
fv.getFlowStragy().adjustRow(fv, 0, 150, 0);
h.check(fv.getView(0), row);
}