/**
* AdhiYogaTestCase.java
Created On 2007, Nov 1, 2007 5:50:49 PM
@author E. Rajasekar
*/
package app.astrosoft.xps.yoga.test;
import static app.astrosoft.util.CollectionUtil.newEntry;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.constructChart;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.getLogger;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.getSession;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.loadFacts;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.setUp;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.testYogaNotPresent;
import static app.astrosoft.xps.yoga.test.YogaAnalysisTestHelper.testYogaPresent;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;
import app.astrosoft.consts.Planet;
import app.astrosoft.consts.Rasi;
import app.astrosoft.consts.YogaCombination;
import app.astrosoft.xps.beans.PlanetChart;
@SuppressWarnings("unchecked")
public class AdhiYogaTestCase extends YogaAnalysisTestCase {
@Test
//@Ignore
public void testAdhiYoga1() throws Exception{
PlanetChart chart = constructChart(
newEntry(Planet.Ascendant, Rasi.Mesha),
newEntry(Planet.Moon, Rasi.Mesha),
newEntry(Planet.Jupiter, Rasi.Kanya),
newEntry(Planet.Mercury, Rasi.Kanya));
setUp("Adhi Yoga");
loadFacts(chart);
getSession().fireAllRules();
testYogaPresent(YogaCombination.AdhiYoga,"75%");
}
@Test
//@Ignore
public void testAdhiYoga2() throws Exception{
PlanetChart chart = constructChart(
newEntry(Planet.Ascendant, Rasi.Mesha),
newEntry(Planet.Moon, Rasi.Mesha),
newEntry(Planet.Venus, Rasi.Vrichika));
setUp("Adhi Yoga");
loadFacts(chart);
getSession().fireAllRules();
testYogaNotPresent(YogaCombination.AdhiYoga);
}
@Test
//@Ignore
public void testAdhiYoga3() throws Exception{
PlanetChart chart = constructChart(
newEntry(Planet.Ascendant, Rasi.Mesha),
newEntry(Planet.Moon, Rasi.Mesha),
newEntry(Planet.Jupiter, Rasi.Kanya),
newEntry(Planet.Mercury, Rasi.Thula),
newEntry(Planet.Venus, Rasi.Vrichika));
setUp("Adhi Yoga");
loadFacts(chart);
getSession().fireAllRules();
testYogaPresent(YogaCombination.AdhiYoga,"100%");
}
}