package org.teachingkidsprogramming.recipes.deepdives.tests;
import junit.framework.TestCase;
import org.teachingkidsprogramming.section03ifs.DeepDive03Ifs;
public class DeepDive03Test extends TestCase
{
public void testQuestions() throws Exception
{
assertQuestion("doesABear", "woods");
assertQuestion("neverEverEver", "chocolate");
assertQuestion("notEverEverEver", true);
assertQuestion("isThePopeCatholic", true);
assertQuestion("trueOrFalse", true);
assertQuestion("letSleepingBabiesLie", false);
assertQuestion("howCoachThinks", 110);
assertQuestion("lessThan", 15);
assertQuestion("greaterThan", 5);
assertQuestion("notEqual", 52);
assertQuestion("equalsForStrings", "bananas");
assertCurrentlyFailing("thisAndThat");
assertQuestion("theBeginningOrEnd", 92);
assertQuestion("ifInHighSchool", 16);
assertQuestion("nestedIfOrPigsInABlanket", false);
assertQuestion("semicolonsMessUpIfStatements", "ketchup");
}
public void assertQuestion(String methodName, Object answer) throws Exception
{
assertCurrentlyFailing(methodName);
assertCorrectAnswer(answer, methodName);
}
public void assertCorrectAnswer(Object answer, String methodName) throws Exception
{
try
{
DeepDive03Ifs h = new DeepDive03Ifs();
if (answer instanceof Integer)
{
h.____ = (Integer) answer;
}
if (answer instanceof String)
{
h.___ = (String) answer;
}
if (answer instanceof Boolean)
{
h._____ = (Boolean) answer;
h.______ = (Boolean) answer;
}
DeepDive03Ifs.class.getMethod(methodName).invoke(h);
}
catch (Exception e)
{
if (e.getCause() != null) { throw (Error) e.getCause(); }
throw e;
}
}
public void assertCurrentlyFailing(String methodName)
{
boolean failed = false;
try
{
DeepDive03Ifs h = new DeepDive03Ifs();
DeepDive03Ifs.class.getMethod(methodName).invoke(h);
}
catch (Throwable e)
{
failed = true;
}
assertTrue("the method " + methodName + " is already passing", failed);
}
}