123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-14
- * Changed: 2022-11-09
- *
- * */
- #include <gtest/gtest.h>
- #include <ls_std/ls_std_core.hpp>
- #include <ls_std/ls_std_boxing.hpp>
- using namespace ls::std::boxing;
- using namespace ls::std::core;
- using namespace ::std;
- namespace
- {
- class DoubleTest : public ::testing::Test
- {
- protected:
- DoubleTest() = default;
- ~DoubleTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- // assignment operators
- TEST_F(DoubleTest, operator_assignment)
- {
- Double x{};
- x = 44.22;
- ASSERT_EQ(44.22, x);
- }
- // arithmetic operators
- TEST_F(DoubleTest, operator_negative)
- {
- Double x{3.25};
- ASSERT_DOUBLE_EQ(-3.25, -x);
- }
- TEST_F(DoubleTest, operator_addition_with_reference)
- {
- Double x{3.1415};
- Double y{2.223};
- Double z{x + y};
- ASSERT_DOUBLE_EQ(5.3645, z);
- }
- TEST_F(DoubleTest, operator_addition_with_value)
- {
- Double x{3.1415};
- ASSERT_DOUBLE_EQ(5.3645, x + 2.223);
- }
- TEST_F(DoubleTest, operator_multiplication_with_reference)
- {
- Double x{3.14};
- Double y{2.22};
- Double z{x * y};
- ASSERT_DOUBLE_EQ(6.9708, z);
- }
- TEST_F(DoubleTest, operator_multiplication_with_value)
- {
- Double x{3.14};
- ASSERT_DOUBLE_EQ(6.9708, x * 2.22);
- }
- TEST_F(DoubleTest, operator_substraction_with_reference)
- {
- Double x{3.1415};
- Double y{2.225};
- Double z{x - y};
- ASSERT_DOUBLE_EQ(0.9165, z);
- }
- TEST_F(DoubleTest, operator_substraction_with_value)
- {
- Double x{3.1415};
- ASSERT_DOUBLE_EQ(0.9165, x - 2.225);
- }
- TEST_F(DoubleTest, operator_division_with_reference)
- {
- Double x{2.25};
- Double y{0.5};
- Double z{x / y};
- ASSERT_DOUBLE_EQ(4.5, z);
- }
- TEST_F(DoubleTest, operator_division_with_value)
- {
- Double x{2.25};
- ASSERT_DOUBLE_EQ(4.5, x / 0.5);
- }
- // compound operators
- TEST_F(DoubleTest, operator_add_assign_with_reference)
- {
- Double x{2.25000000};
- Double y{3.14000000};
- x += y;
- ASSERT_DOUBLE_EQ(5.39000000, x);
- }
- TEST_F(DoubleTest, operator_add_assign_with_value)
- {
- Double x{2.25000000};
- x += 3.14000000;
- ASSERT_DOUBLE_EQ(5.39000000, x);
- }
- TEST_F(DoubleTest, operator_sub_assign_with_reference)
- {
- Double x{2.25};
- Double y{0.04};
- x -= y;
- ASSERT_DOUBLE_EQ(2.21, x);
- }
- TEST_F(DoubleTest, operator_sub_assign_with_value)
- {
- Double x{2.25};
- x -= 0.04;
- ASSERT_DOUBLE_EQ(2.21, x);
- }
- TEST_F(DoubleTest, operator_mul_assign_with_reference)
- {
- Double x{2.25000000};
- Double y{0.04000000};
- x *= y;
- ASSERT_DOUBLE_EQ(0.09000000, x);
- }
- TEST_F(DoubleTest, operator_mul_assign_with_value)
- {
- Double x{2.25000000};
- x *= 0.04000000;
- ASSERT_DOUBLE_EQ(0.09000000, x);
- }
- TEST_F(DoubleTest, operator_division_assign_with_reference)
- {
- Double x{2.25};
- Double y{0.05};
- x /= y;
- ASSERT_DOUBLE_EQ(45.0, x);
- }
- TEST_F(DoubleTest, operator_division_assign_with_value)
- {
- Double x{2.25};
- x /= 0.05;
- ASSERT_DOUBLE_EQ(45.0, x);
- }
- // comparison operators
- TEST_F(DoubleTest, operator_equals_with_reference)
- {
- Double x{3.14159};
- Double y{3.14159};
- ASSERT_TRUE(x == y);
- ASSERT_TRUE(y == x);
- }
- TEST_F(DoubleTest, operator_equals_with_value)
- {
- Double x{3.14159};
- ASSERT_TRUE(x == 3.14159);
- ASSERT_TRUE(3.14159 == x);
- }
- TEST_F(DoubleTest, operator_not_equal_with_reference)
- {
- Double x{3.1415};
- Double y{3.1414};
- ASSERT_TRUE(x != y);
- ASSERT_TRUE(y != x);
- }
- TEST_F(DoubleTest, operator_not_equal_with_value)
- {
- Double x{3.1415};
- ASSERT_TRUE(x != 3.1414);
- ASSERT_TRUE(3.1414 != x);
- }
- TEST_F(DoubleTest, operator_greater_than_with_reference)
- {
- Double x{3.1415};
- Double y{3.1414};
- ASSERT_TRUE(x > y);
- }
- TEST_F(DoubleTest, operator_greater_than_with_value)
- {
- Double x{3.1415};
- Double y{3.1414};
- ASSERT_TRUE(x > 3.1414);
- }
- TEST_F(DoubleTest, operator_greater_than_equals_with_reference)
- {
- Double x{3.1414};
- Double y{3.1414};
- Double z{3.1415};
- ASSERT_TRUE(x >= y);
- ASSERT_TRUE(z >= y);
- }
- TEST_F(DoubleTest, operator_greater_than_equals_with_value)
- {
- Double x{3.1414};
- ASSERT_TRUE(x >= 3.1414);
- }
- TEST_F(DoubleTest, operator_less_than_with_reference)
- {
- Double x{3.1413};
- Double y{3.1414};
- ASSERT_TRUE(x < y);
- }
- TEST_F(DoubleTest, operator_less_than_with_value)
- {
- Double x{3.1413};
- Double y{3.1414};
- ASSERT_TRUE(x < 3.1414);
- }
- TEST_F(DoubleTest, operator_less_than_equals_with_reference)
- {
- Double x{3.1414};
- Double y{3.1414};
- Double z{3.1415};
- ASSERT_TRUE(x <= y);
- ASSERT_TRUE(x <= z);
- }
- TEST_F(DoubleTest, operator_less_than_equals_with_value)
- {
- Double x{3.1414};
- ASSERT_TRUE(x <= 3.1414);
- }
- // increment / decrement operator
- TEST_F(DoubleTest, operator_increment)
- {
- Double x{3.1415};
- ++x;
- ASSERT_DOUBLE_EQ(4.1415, x);
- }
- TEST_F(DoubleTest, operator_decrement)
- {
- Double x{3.1415};
- --x;
- ASSERT_DOUBLE_EQ(2.1415, x);
- }
- // implementation
- TEST_F(DoubleTest, parse_with_positive_value)
- {
- Double x{};
- x.parse("3.1415");
- ASSERT_DOUBLE_EQ(3.1415, x);
- }
- TEST_F(DoubleTest, parse_with_negative_value)
- {
- Double x{};
- x.parse("-2.1415");
- ASSERT_DOUBLE_EQ(-2.1415, x);
- }
- TEST_F(DoubleTest, toString)
- {
- Double x{13.1543};
- ASSERT_TRUE(x.toString().find("13.1543") != string::npos);
- }
- // additional functionality
- TEST_F(DoubleTest, getEpsilon)
- {
- Double x{};
- ASSERT_DOUBLE_EQ(0.00000001, x.getEpsilon());
- }
- TEST_F(DoubleTest, getValue)
- {
- Double x{3.1415};
- ASSERT_DOUBLE_EQ(3.1415, x.getValue());
- }
- TEST_F(DoubleTest, setEpsilon)
- {
- Double x{};
- x.setEpsilon(0.01);
- ASSERT_DOUBLE_EQ(0.01, x.getEpsilon());
- }
- TEST_F(DoubleTest, setEpsilon_invalid_value)
- {
- Double x{};
- EXPECT_THROW({
- try
- {
- x.setEpsilon(0.0);
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- }, IllegalArgumentException);
- }
- }
|