public class PaddingRendererTestCase {
public static Test suite() {
MutableShorthandSet supportedShorthands = new MutableShorthandSet();
supportedShorthands.add(StyleShorthands.PADDING);
final TestPropertyClearerChecker checker =
new TestPropertyClearerChecker();
ShorthandOptimizer allShorthands =
new EdgeShorthandOptimizer(StyleShorthands.PADDING,
checker, supportedShorthands);
ShorthandOptimizer noShorthands =
new EdgeShorthandOptimizer(StyleShorthands.PADDING,
checker, new MutableShorthandSet());
ShorthandRendererTestSuiteBuilder builder =
new ShorthandRendererTestSuiteBuilder(
null, new ShorthandPropertyRenderer(StyleShorthands.PADDING),
allShorthands, noShorthands, checker);