/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-09 * Changed: 2023-02-20 * * */ #include #include #include #include using namespace ls::std::core; using namespace ls::std::io; using namespace ::std; namespace { class SectionPairIdentifierArgumentEvaluatorTest : public ::testing::Test { protected: SectionPairIdentifierArgumentEvaluatorTest() = default; ~SectionPairIdentifierArgumentEvaluatorTest() override = default; void SetUp() override {} void TearDown() override {} }; class SectionPairIdentifierArgumentEvaluatorTest_InvalidArgumentTest : public ::testing::TestWithParam { protected: SectionPairIdentifierArgumentEvaluatorTest_InvalidArgumentTest() = default; ~SectionPairIdentifierArgumentEvaluatorTest_InvalidArgumentTest() override = default; }; TEST_F(SectionPairIdentifierArgumentEvaluatorTest, getClassName) { shared_ptr evaluator = make_shared("_id"); ASSERT_STREQ("SectionPairIdentifierArgumentEvaluator", evaluator->getClassName().c_str()); } TEST_P(SectionPairIdentifierArgumentEvaluatorTest_InvalidArgumentTest, evaluate) { EXPECT_THROW( { try { SectionPairIdentifierArgumentEvaluator(GetParam()).evaluate(); } catch (const IllegalArgumentException &_exception) { ::std::string actual = _exception.what(); ::std::string expected = "IllegalArgumentException thrown - \"" + GetParam() + "\" is not a valid identifier!"; ASSERT_STREQ(expected.c_str(), actual.c_str()); throw; } }, IllegalArgumentException); } INSTANTIATE_TEST_SUITE_P(InvalidArgumentTest, SectionPairIdentifierArgumentEvaluatorTest_InvalidArgumentTest, ::testing::Values("_color", "Color", "another_color")); }