diff options
Diffstat (limited to 'src/include/taler_testing_lib.h')
-rw-r--r-- | src/include/taler_testing_lib.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h index 97189a55e..9d5b64384 100644 --- a/src/include/taler_testing_lib.h +++ b/src/include/taler_testing_lib.h @@ -314,17 +314,9 @@ struct TALER_TESTING_Command const char *trait, unsigned int index); - - /** - * Has GNUNET_YES if the command is a "meta" one. Meta - * commands are those that takes arrays of commands and - * execute them. Are used to group testing commands in - * order to improve readability of test cases. - */ - unsigned int meta; - }; + /** * Lookup command by label. * @@ -1253,6 +1245,14 @@ TALER_TESTING_cmd_batch (const char *label, struct TALER_TESTING_Command *batch); +/** + * Test if this command is a batch command. + * + * @return false if not, true if it is a batch command + */ +int +TALER_TESTING_cmd_is_batch (const struct TALER_TESTING_Command *cmd); + /* *** Generic trait logic for implementing traits ********* */ |