ContributionsMost RecentMost LikesSolutionsRe: Setting Custom Properties on project level through JUnit NP :). But same result unfortunately Re: Setting Custom Properties on project level through JUnit Not sure what code you want. The relevant Java code from my JUnit test is posted in my first post. Re: Setting Custom Properties on project level through JUnit This is the Custom (project) Properties I'm referring to in my SOAP UI tests which runs fine. But I need to change these properties through my JUnit project so I can execute my tests automatically on different environments(that has different usernames/passwords). However, it seems like the TestRunner.setProjectProperties() has no effect. Setting Custom Properties on project level through JUnit Hello! I'm running automated SOAPUI tests through JUnit. I've succeded transferred properties to the different Test Cases by sending a Map of different properties - but now I need to do the same on project level("Custom Parameters). I've tried this: SoapUITestCaseRunner runner = new SoapUITestCaseRunner(); runner.setProjectFile(folder + "\\" + s); runner.setIgnoreErrors(true); runner.setProjectProperties({"DbUsername=testuser","DbPassword=testpw"}); runner.run(); Unfortunately it doesn't work - the properties(e.g: #Project#DbUsername) remain empty when running the code. Any ideas how to fix this? :) Re: Setting Custom Properties on project level through JUnit Sorry for being inaccurate - I am using "${#Project#DbPassword}". It works when putting in the properties manually under "Custom Properties" - but I can't set it automatically through JUnit.