12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-08
- * Changed: 2023-02-22
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <string>
- using namespace ls::std::core;
- using namespace ::std;
- using namespace ::testing;
- namespace
- {
- class NullPointerArgumentEvaluatorTest : public Test
- {
- protected:
- NullPointerArgumentEvaluatorTest() = default;
- ~NullPointerArgumentEvaluatorTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(NullPointerArgumentEvaluatorTest, evaluate)
- {
- EXPECT_THROW(
- {
- try
- {
- NullPointerArgumentEvaluator{nullptr}.evaluate();
- }
- catch (const IllegalArgumentException &_exception)
- {
- string actual = _exception.what();
- string expected = _exception.getName() + " thrown - passed argument is null!";
- ASSERT_STREQ(expected.c_str(), actual.c_str());
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(NullPointerArgumentEvaluatorTest, evaluate_dedicated_message)
- {
- EXPECT_THROW(
- {
- try
- {
- NullPointerArgumentEvaluator(nullptr, "this reference is null!").evaluate();
- }
- catch (const IllegalArgumentException &_exception)
- {
- string actual = _exception.what();
- string expected = _exception.getName() + " thrown - this reference is null!";
- ASSERT_STREQ(expected.c_str(), actual.c_str());
- throw;
- }
- },
- IllegalArgumentException);
- }
- }
|