123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-09
- * Changed: 2023-02-22
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-boxing.hpp>
- #include <ls-std/ls-std-core.hpp>
- using ls::std::boxing::Integer;
- using ls::std::core::IllegalArithmeticOperationException;
- using testing::Test;
- namespace
- {
- class IntegerTest : public Test
- {
- protected:
- IntegerTest() = default;
- ~IntegerTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- // assignment operators
- TEST_F(IntegerTest, operator_assignment_with_reference)
- {
- Integer x{};
- Integer y{3};
- x = y;
- ASSERT_EQ(3, x.getValue());
- }
- TEST_F(IntegerTest, operator_assignment_with_value)
- {
- Integer x{};
- x = 44;
- ASSERT_EQ(44, x.getValue());
- }
- // arithmetic operators
- TEST_F(IntegerTest, operator_negative)
- {
- Integer x{13};
- Integer y{-13};
- ASSERT_EQ(-13, -x);
- ASSERT_EQ(13, -y);
- }
- TEST_F(IntegerTest, operator_add_with_reference)
- {
- Integer x{13};
- Integer y{7};
- ASSERT_EQ(20, x + y);
- }
- TEST_F(IntegerTest, operator_add_with_value)
- {
- Integer x{13};
- ASSERT_EQ(20, x + 7);
- }
- TEST_F(IntegerTest, operator_mul_with_reference)
- {
- Integer x{3};
- Integer y{7};
- ASSERT_EQ(21, x * y);
- }
- TEST_F(IntegerTest, operator_mul_with_value)
- {
- Integer x{3};
- ASSERT_EQ(21, x * 7);
- }
- TEST_F(IntegerTest, operator_sub_with_reference)
- {
- Integer x{51};
- Integer y{17};
- ASSERT_EQ(34, x - y);
- }
- TEST_F(IntegerTest, operator_sub_with_value)
- {
- Integer x{51};
- ASSERT_EQ(34, x - 17);
- }
- TEST_F(IntegerTest, operator_div_with_reference)
- {
- Integer x{81};
- Integer y{9};
- ASSERT_EQ(9, x / y);
- }
- TEST_F(IntegerTest, operator_div_with_value)
- {
- Integer x{81};
- ASSERT_EQ(9, x / 9);
- }
- TEST_F(IntegerTest, operator_div_by_zero_with_reference)
- {
- EXPECT_THROW(
- {
- try
- {
- Integer x{9};
- Integer y{0};
- x = x / y;
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- TEST_F(IntegerTest, operator_div_by_zero_with_value)
- {
- EXPECT_THROW(
- {
- try
- {
- Integer x{9};
- x = x / 0;
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- TEST_F(IntegerTest, operator_mod_with_reference)
- {
- Integer x{85};
- Integer y{9};
- ASSERT_EQ(4, x % y);
- }
- TEST_F(IntegerTest, operator_mod_with_value)
- {
- Integer x{85};
- ASSERT_EQ(4, x % 9);
- }
- // compound operators
- TEST_F(IntegerTest, operator_add_assign_with_reference)
- {
- Integer x{4};
- Integer y{2};
- x += y;
- ASSERT_EQ(6, x.getValue());
- }
- TEST_F(IntegerTest, operator_add_assign_with_value)
- {
- Integer x{4};
- x += 2;
- ASSERT_EQ(6, x.getValue());
- }
- TEST_F(IntegerTest, operator_sub_assign_with_reference)
- {
- Integer x{14};
- Integer y{2};
- x -= y;
- ASSERT_EQ(12, x.getValue());
- }
- TEST_F(IntegerTest, operator_sub_assign_with_value)
- {
- Integer x{14};
- x -= 2;
- ASSERT_EQ(12, x.getValue());
- }
- TEST_F(IntegerTest, operator_mul_assign_with_reference)
- {
- Integer x{6};
- Integer y{3};
- x *= y;
- ASSERT_EQ(18, x.getValue());
- }
- TEST_F(IntegerTest, operator_mul_assign_with_value)
- {
- Integer x{6};
- x *= 3;
- ASSERT_EQ(18, x.getValue());
- }
- TEST_F(IntegerTest, operator_div_assign_with_reference)
- {
- Integer x{12};
- Integer y{3};
- x /= y;
- ASSERT_EQ(4, x.getValue());
- }
- TEST_F(IntegerTest, operator_div_assign_with_value)
- {
- Integer x{12};
- x /= 3;
- ASSERT_EQ(4, x.getValue());
- }
- TEST_F(IntegerTest, operator_div_assign_by_zero_with_reference)
- {
- EXPECT_THROW(
- {
- try
- {
- Integer x{9};
- Integer y{0};
- x = x /= y;
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- TEST_F(IntegerTest, operator_div_assign_by_zero_with_value)
- {
- EXPECT_THROW(
- {
- try
- {
- Integer x{9};
- x = x /= 0;
- }
- catch (const IllegalArithmeticOperationException &_exception)
- {
- throw;
- }
- },
- IllegalArithmeticOperationException);
- }
- // comparison operators
- TEST_F(IntegerTest, operator_equals_with_reference)
- {
- Integer x{12};
- Integer y{12};
- ASSERT_TRUE(x == y);
- }
- TEST_F(IntegerTest, operator_equals_with_value)
- {
- Integer x{12};
- ASSERT_TRUE(x == 12);
- }
- TEST_F(IntegerTest, operator_not_equals_with_reference)
- {
- Integer x{12};
- Integer y{3};
- ASSERT_TRUE(x != y);
- }
- TEST_F(IntegerTest, operator_not_equals_with_value)
- {
- Integer x{12};
- ASSERT_TRUE(x != 3);
- }
- TEST_F(IntegerTest, operator_greater_than_with_reference)
- {
- Integer x{12};
- Integer y{3};
- ASSERT_TRUE(x > y);
- }
- TEST_F(IntegerTest, operator_greater_than_with_value)
- {
- Integer x{12};
- ASSERT_TRUE(x > 3);
- }
- TEST_F(IntegerTest, operator_greater_than_equals_with_reference)
- {
- Integer x{12};
- Integer y{12};
- ASSERT_TRUE(x >= y);
- }
- TEST_F(IntegerTest, operator_greater_than_equals_with_value)
- {
- Integer x{12};
- ASSERT_TRUE(x >= 12);
- }
- TEST_F(IntegerTest, operator_less_than_with_reference)
- {
- Integer x{10};
- Integer y{12};
- ASSERT_TRUE(x < y);
- }
- TEST_F(IntegerTest, operator_less_than_with_value)
- {
- Integer x{10};
- ASSERT_TRUE(x < 12);
- }
- TEST_F(IntegerTest, operator_less_than_equals_with_reference)
- {
- Integer x{10};
- Integer y{10};
- ASSERT_TRUE(x <= y);
- }
- TEST_F(IntegerTest, operator_less_than_equals_with_value)
- {
- Integer x{10};
- ASSERT_TRUE(x <= 10);
- }
- // logical operators
- TEST_F(IntegerTest, operator_negation)
- {
- Integer x{};
- ASSERT_TRUE(!x);
- }
- TEST_F(IntegerTest, operator_and_with_reference)
- {
- Integer x{1};
- Integer y{1};
- ASSERT_TRUE(x && y);
- }
- TEST_F(IntegerTest, operator_and_with_value)
- {
- Integer x{1};
- ASSERT_TRUE(x && 1);
- }
- TEST_F(IntegerTest, operator_and_with_boolean)
- {
- Integer x{1};
- ASSERT_TRUE(x && true);
- }
- TEST_F(IntegerTest, operator_or_with_reference)
- {
- Integer x{};
- Integer y{1};
- ASSERT_TRUE(x || y);
- }
- TEST_F(IntegerTest, operator_or_with_value)
- {
- Integer x{};
- ASSERT_TRUE(x || 1);
- }
- TEST_F(IntegerTest, operator_or_with_boolean)
- {
- Integer x{};
- ASSERT_TRUE(x || true);
- }
- // increment / decrement operator
- TEST_F(IntegerTest, operator_increment)
- {
- Integer x{};
- ++x;
- ASSERT_EQ(1, x.getValue());
- }
- TEST_F(IntegerTest, operator_decrement)
- {
- Integer x{};
- --x;
- ASSERT_EQ(-1, x.getValue());
- }
- // implementation
- TEST_F(IntegerTest, parse_with_positive_value)
- {
- Integer number{};
- number.parse("1989");
- ASSERT_EQ(1989, number.getValue());
- }
- TEST_F(IntegerTest, parse_with_negative_value)
- {
- Integer number{};
- number.parse("-13");
- ASSERT_EQ(-13, number.getValue());
- }
- TEST_F(IntegerTest, toString)
- {
- Integer number{112};
- ASSERT_STREQ("112", number.toString().c_str());
- }
- // additional functionality
- TEST_F(IntegerTest, getValue)
- {
- Integer x{3};
- ASSERT_EQ(3, x.getValue());
- }
- // additional testing
- TEST_F(IntegerTest, constApproach)
- {
- const Integer x{3};
- ASSERT_EQ(3, x.getValue());
- // x = 4; // wouldn't work
- }
- }
|