Re: Place holder for function execution / Variables evaluation

2018-11-11 Thread Andrey Pokhilko
Hi, There's already a plugin for that: https://jmeter-plugins.org/wiki/SetVariablesAction/ It is exactly a sampler that is used to evaluate functions/variables. -- Andrey Pokhilko 11.11.2018 20:53, Philippe Mouawad пишет: > Hello, > Frequently when using JMeter functions, users don't really

[GitHub] jmeter issue #431: Class#newInstance deprecation with Java 9

2018-11-11 Thread FSchumacher
Github user FSchumacher commented on the issue: https://github.com/apache/jmeter/pull/431 Well, I don't know, if we can generalize it, but it is surely the first hits, only. There will be more, when I have slept a bit. ---

[GitHub] jmeter issue #431: Class#newInstance deprecation with Java 9

2018-11-11 Thread codecov-io
Github user codecov-io commented on the issue: https://github.com/apache/jmeter/pull/431 # [Codecov](https://codecov.io/gh/apache/jmeter/pull/431?src=pr=h1) Report > Merging [#431](https://codecov.io/gh/apache/jmeter/pull/431?src=pr=desc) into

[GitHub] jmeter issue #431: Class#newInstance deprecation with Java 9

2018-11-11 Thread pmouawad
Github user pmouawad commented on the issue: https://github.com/apache/jmeter/pull/431 Hello Felix, I guess this is a first step before generalization ? As I see other places in code where newInstance() is used. Regards ---

[GitHub] jmeter pull request #431: Class#newInstance deprecation with Java 9

2018-11-11 Thread FSchumacher
GitHub user FSchumacher opened a pull request: https://github.com/apache/jmeter/pull/431 Class#newInstance deprecation with Java 9 ## Description Change invocation of Class#newInstance to Class#getConstructor#newInstance And do some cleanup using StringUtils.isNotBlank

Place holder for function execution / Variables evaluation

2018-11-11 Thread Philippe Mouawad
Hello, Frequently when using JMeter functions, users don't really know for certain use cases where to put the function, here are few examples: - Any function which output will not be used directly by sample parameters - Such type of functions: -

Re: svn commit: r1846297 - in /jmeter/trunk: src/core/org/apache/jmeter/testelement/property/ObjectProperty.java xdocs/changes.xml

2018-11-11 Thread Felix Schumacher
Am 11.11.18 um 11:38 schrieb Philippe Mouawad: Hello Felix, my code would return null currently for null value Objects.toString(vaoue) would return "null" Am I missing something ? No, I misread the javdoc. Objects.toString(value, null) should do the trick, though. Regards,  Felix

Re: svn commit: r1846297 - in /jmeter/trunk: src/core/org/apache/jmeter/testelement/property/ObjectProperty.java xdocs/changes.xml

2018-11-11 Thread Philippe Mouawad
Hello Felix, my code would return null currently for null value Objects.toString(vaoue) would return "null" Am I missing something ? Thanks On Sat, Nov 10, 2018 at 1:06 PM Felix Schumacher < felix.schumac...@internetallee.de> wrote: > > Am 10.11.18 um 12:21 schrieb pmoua...@apache.org: > >