6 Replies Latest reply on Feb 13, 2007 3:12 PM by gavin.king

    using seam expression language enhancements in integration t

    matt.drees

      In a test of mine, I noticed that this works:

      RegistrationProcess rp = (RegistrationProcess) getValue("#{registrationProcess}");
      rp.selectConference(conference);
      


      but this doesn't:
      setValue("#{conference}", conference);
      invokeMethod("#{registrationProcess.selectConference(conference)}");
      

      (selectConference() gets called with a null parameter)

      Does SeamTest not support parameters in el method expression? Or am I trying to do it wrong?

      Thanks