MCPcopy Create free account
hub / github.com/SIPp/sipp / comparatorToString

Method comparatorToString

src/actions.cpp:49–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49const char * CAction::comparatorToString(T_Comparator comp)
50{
51 switch(comp) {
52 case E_C_EQ:
53 return "==";
54 case E_C_NE:
55 return "!=";
56 case E_C_GT:
57 return ">";
58 case E_C_LT:
59 return "<";
60 case E_C_GEQ:
61 return ">=";
62 case E_C_LEQ:
63 return "<=";
64 default:
65 return "invalid";
66 }
67}
68
69bool CAction::compare(VariableTable *variableTable)
70{

Callers 1

executeActionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected