I have to simulate a scenario where I want 50% to use one http request and the rest for another request. I tried using the IF controller to split by threadNumber i.e. send the odd thread numbers to one side and even to another. I tried using the condition in IF controller in Jmeter as
${threadNum}' % 2 == '0'
and '${threadNum}' %2 != '0'
I tried with around 10 users and I always see them going only into the odd queue i.e. ${threadNum}' % 2 == '0' is never satisfied. Am i doing it the right way?