303132333435363738
/** * Test of parse method, of class com.totsp.gwittir.client.util.UnitsParser. */ public void testParse() { UnitValue v = UnitsParser.parse( "100px" ); this.assertEquals( 100, v.value ); this.assertEquals( "px", v.units ); }