MD5 using Groovy in SoapUI
问题 I created a test case which contains parameters that consist of key and value. I need to take all those parameters in an alphabetic order, and then create a MD5 hash value which i will pass to one of the parameters of this test. Any suggestions? i looked in google and cannot find anything helpful. Thanks ahead! 回答1: You can retrieve the SoapUI's test case properties using a Groovy Script test step as given below. def map = context.testCase.properties.keySet().inject([:]){map, key -> map[key]