Add test case for txn try

This commit is contained in:
James Rouzier
2017-10-25 20:56:12 -04:00
parent 2f1f4b19a0
commit 088e811da4
5 changed files with 56 additions and 1 deletions

View File

@@ -190,3 +190,14 @@ public:
bool run();
bool teardown();
};
class testcase_try : public testcase {
typedef testcase inherited;
public:
testcase_try(const actor_config &config, const mdbx_pid_t pid)
: testcase(config, pid) {}
bool setup();
bool run();
bool teardown();
};