/**
 * Class with a private method that you want to test.
 * @author Xuan Ngo
 *
 */
public class ClassExample
{
  private String privateFoo(int a, String b)
  {
    return a+b;
  }
}

