0

Is it possible to use an if condition in tsung and use a greater than comparison rather than a straight equals and not equals comparison?
Or is it possible to use the and or or operator to combine comparisons?

Aliaksandr Belik
  • 12,725
  • 6
  • 64
  • 90
Usman Ismail
  • 17,999
  • 14
  • 83
  • 165
  • 1
    1 - [Loops, If, Foreach](http://tsung.erlang-projects.org/user_manual.html#htoc71); 2,3 - not, but [erlang code usage possible for dynamic variable](http://tsung.erlang-projects.org/user_manual.html#htoc69). – Aliaksandr Belik Jul 24 '13 at 18:59

1 Answers1

1

There is no greather then operator at this time in tsung, only equal and not equal. It is not possible to combine comparisons with and and or.

Rodolphe
  • 848
  • 4
  • 15