Uncomment function code for Unit Tests

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1785494 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: d586f7ed23
This commit is contained in:
Philippe Mouawad 2017-03-04 14:43:36 +00:00
parent b9d0f7b09c
commit 81620ca023
1 changed files with 2 additions and 2 deletions

View File

@ -19,5 +19,5 @@
// "bin/jmeter.properties", if you want to access it through
// the __groovy function
//
// Uncomment this function and use it with ${__groovy(factorial(10))}
// def factorial(n) { n == 1 ? 1 : n * factorial(n - 1) }
//Uncomment this function and use it with ${__groovy(factorial(10))}
def factorial(n) { n == 1 ? 1 : n * factorial(n - 1) }