ContributionsMost RecentMost LikesSolutionsRe: How to import custom groovy script library inside TestCase Teardown I'm using SoapUI 5.7. I have followed your sample and added the script under the same coresponding location here: C:\Program Files\SmartBear\SoapUI-5.7.0\bin\scripts\groovyScripts Then in newly created TestCase teardown script I added your code which at run gives me this error: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script2.groovy: 1: unable to resolve class groovyScripts.MyTearDownClass @ line 1, column 18. tearDownObject = new groovyScripts.MyTearDownClass(); ^ org.codehaus.groovy.syntax.SyntaxException: unable to resolve class groovyScripts.MyTearDownClass @ line 1, column 18. at org.codehaus.groovy.ast.ClassCodeVisitorSupport.addError(ClassCodeVisitorSupport.java:262) at How to import custom groovy script library inside TestCase Teardown I have Utilities class within my Utilities.groovy script within my project dir. I want to import this file inside TestCase Teardown script. Is this even doable? My each try ends with "org.codehaus.groovy.control.MultipleCompilationErrorsException". Solved