Forum Discussion

naveen8944's avatar
naveen8944
Contributor
9 years ago
Solved

unable to resolve class com.eviware.soapui.impl.wsdl.support.assertions

Newbie here..Need your valuable suggestions     I have a Groovy Script step in soapui 4.6.4   my first line of code is  import com.eviware.soapui.impl.wsdl.support.assertions     and when I ...
  • rupert_anderson's avatar
    9 years ago

    Hi,

     

    Unless you made a typo, I think you need to either use the * wildcard to import the whole assertions package e.g.

     

    import com.eviware.soapui.impl.wsdl.support.assertions.*

    Or pick out a particular class to import from that package e.g.

     

     

    import com.eviware.soapui.impl.wsdl.support.assertions.AssertableConfig

    Make sense?

     

    Regards,

    Rup