forked from EvergreenCrypto/docker-finance
container: root: add unit test for internal throw/exception handler
This commit is contained in:
62
container/src/root/test/common/type.hh
Normal file
62
container/src/root/test/common/type.hh
Normal file
@@ -0,0 +1,62 @@
|
||||
// docker-finance | modern accounting for the power-user
|
||||
//
|
||||
// Copyright (C) 2021-2024 Aaron Fiore (Founder, Evergreen Crypto LLC)
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
//! \file
|
||||
//! \author Aaron Fiore (Founder, Evergreen Crypto LLC)
|
||||
//! \note File intended to be loaded into ROOT.cern framework / Cling interpreter
|
||||
//! \since docker-finance 1.0.0
|
||||
|
||||
#ifndef CONTAINER_SRC_ROOT_TEST_COMMON_TYPE_HH_
|
||||
#define CONTAINER_SRC_ROOT_TEST_COMMON_TYPE_HH_
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <string_view>
|
||||
|
||||
#include "../../src/internal/type.hh"
|
||||
|
||||
//! \namespace docker_finance
|
||||
//! \since docker-finance 1.0.0
|
||||
namespace docker_finance
|
||||
{
|
||||
//! \namespace docker_finance::tests
|
||||
//! \brief docker-finance common test framework
|
||||
//! \ingroup cpp_tests
|
||||
//! \since docker-finance 1.0.0
|
||||
namespace tests
|
||||
{
|
||||
//! \namespace docker_finance::tests::unit
|
||||
//! \brief docker-finance unit test cases
|
||||
//! \ingroup cpp_tests
|
||||
//! \since docker-finance 1.0.0
|
||||
namespace unit
|
||||
{
|
||||
//! \brief Exception fixture (base)
|
||||
//! \since docker-finance 1.0.0
|
||||
struct Exception : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
std::string_view what = "better to be caught than thrown";
|
||||
using t_type = type::Exception::kType;
|
||||
};
|
||||
} // namespace unit
|
||||
} // namespace tests
|
||||
} // namespace docker_finance
|
||||
|
||||
#endif // CONTAINER_SRC_ROOT_TEST_COMMON_TYPE_HH_
|
||||
|
||||
// # vim: sw=2 sts=2 si ai et
|
||||
Reference in New Issue
Block a user