Package com.granule

Examples of com.granule.CSSFastMin


  private void testWithRegular(String css) {
  testMin(css,iBloomCompareTest(css))
  }
 
  public void testMin(String in, String out) {
    CSSFastMin minimizer=new CSSFastMin();
    String minimized = minimizer.minimize(in);
    //System.out.println("####"+minimized);
    assertEquals(minimized, out);
  }
View Full Code Here

TOP

Related Classes of com.granule.CSSFastMin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.