123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-05-27
- * Changed: 2022-11-09
- *
- * */
- #include <gtest/gtest.h>
- #include <ls_std/ls_std_core.hpp>
- using namespace ls::std::core;
- namespace
- {
- class EventNotSubscribedExceptionTest : public ::testing::Test
- {
- protected:
- EventNotSubscribedExceptionTest() = default;
- ~EventNotSubscribedExceptionTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(EventNotSubscribedExceptionTest, constructor)
- {
- EXPECT_THROW({
- try
- {
- throw EventNotSubscribedException{};
- }
- catch (const EventNotSubscribedException &_exception)
- {
- EXPECT_STREQ("EventNotSubscribedException thrown - event was not subscribed!", _exception.what());
- throw;
- }
- }, EventNotSubscribedException);
- }
- }
|