@Test
public void testIfTrueIfFalse1() throws NoSuchMethodException, SecurityException,
IllegalAccessException, IllegalArgumentException,
InvocationTargetException, InstantiationException {
Class stClass = new ClassBuilder("FooObject_testIfTrueIfFalse1").method(
"foo: bar\n" +
" bar ifTrue: [^1] ifFalse: [^2]").build();
Object fooObject = stClass.newInstance();
Method method = fooObject.getClass().getMethod("foo_", Object.class);