-
-
Save ppazos/2fa2046701354ffa20447d8c28e6f796 to your computer and use it in GitHub Desktop.
How to write content to a new file (overwrite if already existing) in Groovy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Write the mock request payload to a file for checking later... | |
// newWrite() is the important it to ensure you get a *new* file each time. | |
// | |
def filename = "C:\\MyScratchFolder\\soapUI projects\\Testing\\procon\\mock_po_activity_request.xml" | |
def file = new File(filename) | |
def w = file.newWriter() | |
w << mockRequest.requestContent | |
w.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
file.newWriter().withWriter { w ->
w << mockRequest.requestContent
}