IndexOutOfBoundsExceptionTest.cpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-10
  6. * Changed: 2023-02-10
  7. *
  8. * */
  9. #include <gtest/gtest.h>
  10. #include <ls-std/ls-std-core.hpp>
  11. #include <string>
  12. using namespace ls::std::core;
  13. namespace
  14. {
  15. class IndexOutOfBoundsExceptionTest : public ::testing::Test
  16. {
  17. protected:
  18. IndexOutOfBoundsExceptionTest() = default;
  19. ~IndexOutOfBoundsExceptionTest() override = default;
  20. void SetUp() override
  21. {}
  22. void TearDown() override
  23. {}
  24. };
  25. TEST_F(IndexOutOfBoundsExceptionTest, constructor)
  26. {
  27. EXPECT_THROW(
  28. {
  29. try
  30. {
  31. throw IndexOutOfBoundsException{};
  32. }
  33. catch (const IndexOutOfBoundsException &_exception)
  34. {
  35. ::std::string message = _exception.what();
  36. EXPECT_STREQ("IndexOutOfBoundsException thrown - provided index is out of bounds!", message.c_str());
  37. throw;
  38. }
  39. },
  40. IndexOutOfBoundsException);
  41. }
  42. TEST_F(IndexOutOfBoundsExceptionTest, constructor_dedicated_message)
  43. {
  44. EXPECT_THROW(
  45. {
  46. try
  47. {
  48. throw IndexOutOfBoundsException{"index 3 is out of bounds!"};
  49. }
  50. catch (const IndexOutOfBoundsException &_exception)
  51. {
  52. ::std::string message = _exception.what();
  53. EXPECT_STREQ("IndexOutOfBoundsException thrown - index 3 is out of bounds!", message.c_str());
  54. throw;
  55. }
  56. },
  57. IndexOutOfBoundsException);
  58. }
  59. }