Package org.metawb.astro

Examples of org.metawb.astro.AstroItem


        for (int i = 0; i < initialAspectsStringData.length; i++) {
            String string = initialAspectsStringData[i];
            if(string.contains(":Sun:"))
                expResult.add(string);
        }
        AstroItem ai = pm.getPlanet(PlanetId.Sun);
        Set result = am.getAspects(ai);
        assertTrue(isSame(expResult, result));
    }
View Full Code Here


            String string = initialAspectsStringData[i];
            if(string.contains(":Sun:") && string.contains(":Mars:"))
                expResult.add(string);
        }

        AstroItem p1 = pm.getPlanet(PlanetId.Sun);
        AstroItem p2 = pm.getPlanet(PlanetId.Mars);
        Set result = new HashSet(am.getAspects(p1, p2));
        assertTrue(isSame(expResult, result));
    }
View Full Code Here

TOP

Related Classes of org.metawb.astro.AstroItem

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.