Package de.timefinder.data

Examples of de.timefinder.data.Location.addFeature()


    @Test
    public void addFeature() {
        Location room = newLocation("test");
        Feature f = newFeature("feature");
        room.addFeature(f);
        assertEquals(f, room.getFeatures().iterator().next());

        Feature feature = new Feature();
        instance.addFeature(feature);
        instance.addFeature(feature);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.