|
@@ -3,16 +3,18 @@
|
|
|
* Company: Lynar Studios
|
|
|
* E-Mail: webmaster@lynarstudios.com
|
|
|
* Created: 2023-02-08
|
|
|
-* Changed: 2023-03-25
|
|
|
+* Changed: 2023-04-07
|
|
|
*
|
|
|
* */
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
#include <ls-std/ls-std-core.hpp>
|
|
|
+#include <memory>
|
|
|
#include <string>
|
|
|
|
|
|
using ls::std::core::IllegalArgumentException;
|
|
|
using ls::std::core::NullPointerArgumentEvaluator;
|
|
|
+using std::shared_ptr;
|
|
|
using std::string;
|
|
|
using testing::Test;
|
|
|
|
|
@@ -26,7 +28,7 @@ namespace
|
|
|
~NullPointerArgumentEvaluatorTest() override = default;
|
|
|
};
|
|
|
|
|
|
- TEST_F(NullPointerArgumentEvaluatorTest, evaluate)
|
|
|
+ TEST_F(NullPointerArgumentEvaluatorTest, evaluate_raw_pointer)
|
|
|
{
|
|
|
EXPECT_THROW(
|
|
|
{
|
|
@@ -46,7 +48,7 @@ namespace
|
|
|
IllegalArgumentException);
|
|
|
}
|
|
|
|
|
|
- TEST_F(NullPointerArgumentEvaluatorTest, evaluate_dedicated_message)
|
|
|
+ TEST_F(NullPointerArgumentEvaluatorTest, evaluate_raw_pointer_with_dedicated_message)
|
|
|
{
|
|
|
EXPECT_THROW(
|
|
|
{
|
|
@@ -65,4 +67,48 @@ namespace
|
|
|
},
|
|
|
IllegalArgumentException);
|
|
|
}
|
|
|
+
|
|
|
+ TEST_F(NullPointerArgumentEvaluatorTest, evaluate)
|
|
|
+ {
|
|
|
+ shared_ptr<void> value{};
|
|
|
+
|
|
|
+ EXPECT_THROW(
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ NullPointerArgumentEvaluator{value}.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)
|
|
|
+ {
|
|
|
+ shared_ptr<void> value{};
|
|
|
+
|
|
|
+ EXPECT_THROW(
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ NullPointerArgumentEvaluator(value, "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);
|
|
|
+ }
|
|
|
}
|