}
@Test
public void testInvokeOnComponentExceptions() throws Exception
{
org.apache.myfaces.Assert.assertException(NullPointerException.class, new TestRunner()
{
public void run() throws Throwable
{
_testimpl.invokeOnComponent(null, "xxx", _contextCallback);
}
});
org.apache.myfaces.Assert.assertException(NullPointerException.class, new TestRunner()
{
public void run() throws Throwable
{
_testimpl.invokeOnComponent(_facesContext, null, _contextCallback);
}
});
org.apache.myfaces.Assert.assertException(NullPointerException.class, new TestRunner()
{
public void run() throws Throwable
{
_testimpl.invokeOnComponent(_facesContext, "xxx", null);
}