| 624 | // **** Start testing increment by key valid **** |
| 625 | C_ATTR(incrementByKeyValid, :Local :AutoArgs) |
| 626 | void incrementByKeyValid(Context *c) |
| 627 | { |
| 628 | uint64_t val = 0; |
| 629 | if (!Memcached::incrementByKey("incGroup", "inc3", 1, &val)) { |
| 630 | setInvalid(c); |
| 631 | } else { |
| 632 | setValidity(c, 12 == val); |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | // **** Start test get after increment by key **** |
| 637 | C_ATTR(getAfterIncrementByKey, :Local :AutoArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected