Package net.mindengine.galen.specs

Examples of net.mindengine.galen.specs.SpecWidth


       
        List<Spec> specs = objectSpecs.getSpecs();
        assertThat(specs.size(), is(2));
       
        assertThat((SpecNear) specs.get(0), is(new SpecNear("button", locations(new Location(Range.exact(10), sides(LEFT))))));
        assertThat((SpecWidth) specs.get(1), is(new SpecWidth(Range.exact(70))));
    }
View Full Code Here


        assertThat(objectSpecs.getObjectName(), is("big-box"));
       
        List<Spec> specs = objectSpecs.getSpecs();
        assertThat(specs.size(), is(1));
       
        assertThat((SpecWidth) specs.get(0), is(new SpecWidth(Range.exact(900))));
    }
View Full Code Here

TOP

Related Classes of net.mindengine.galen.specs.SpecWidth

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.