@Ignore
@Test
public void testTwoToThePowerOf()
{
CombinationGenerator g = new CombinationGenerator();
int input = 0;
int expectedOutput = 1;
int actualOutput = g.twoToThePowerOf(input);
assertEquals(String.format("2 to the %d should equal %d; actual value was %d", input, expectedOutput, actualOutput), expectedOutput, actualOutput);
input = 1;
expectedOutput = 2;
actualOutput = g.twoToThePowerOf(input);
assertEquals(String.format("2 to the %d should equal %d; actual value was %d", input, expectedOutput, actualOutput), expectedOutput, actualOutput);
input = 2;
expectedOutput = 4;
actualOutput = g.twoToThePowerOf(input);
assertEquals(String.format("2 to the %d should equal %d; actual value was %d", input, expectedOutput, actualOutput), expectedOutput, actualOutput);
input = 3;
expectedOutput = 8;
actualOutput = g.twoToThePowerOf(input);
assertEquals(String.format("2 to the %d should equal %d; actual value was %d", input, expectedOutput, actualOutput), expectedOutput, actualOutput);
input = 4;
expectedOutput = 16;
actualOutput = g.twoToThePowerOf(input);
assertEquals(String.format("2 to the %d should equal %d; actual value was %d", input, expectedOutput, actualOutput), expectedOutput, actualOutput);
}