diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /library/cpp/testing/unittest/simple.h | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'library/cpp/testing/unittest/simple.h')
-rw-r--r-- | library/cpp/testing/unittest/simple.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/library/cpp/testing/unittest/simple.h b/library/cpp/testing/unittest/simple.h new file mode 100644 index 0000000000..2a5300d886 --- /dev/null +++ b/library/cpp/testing/unittest/simple.h @@ -0,0 +1,39 @@ +#pragma once + +#include "registar.h" + +namespace NUnitTest { + struct TSimpleTestExecutor: public TTestBase { + typedef TVector<TBaseTestCase> TTests; + + TTests Tests; + + virtual void Execute() override final { + AtStart(); + + for (typename TTests::iterator i = Tests.begin(), ie = Tests.end(); i != ie; ++i) { + if (!CheckAccessTest(i->Name_)) { + continue; + } + TTestContext context(this->Processor()); + try { + BeforeTest(i->Name_); + { + TCleanUp cleaner(this); + TTestBase::Run([i, &context] { i->Body_(context); }, Name(), i->Name_, i->ForceFork_); + } + } catch (const ::NUnitTest::TAssertException&) { + } catch (const yexception& e) { + CATCH_REACTION_BT(i->Name_, e, &context); + } catch (const std::exception& e) { + CATCH_REACTION(i->Name_, e, &context); + } catch (...) { + AddError("non-std exception!", &context); + } + Finish(i->Name_, &context); + } + + AtEnd(); + } + }; +} |