1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-05-27
- * Changed: 2023-02-04
- *
- * */
- #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);
- }
- }
|