1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#include <cppunit/extensions/HelperMacros.h>
#include "cppUnitHelper.hxx"
#include "Complex.hxx" // CLAM
namespace CLAMTest
{
class ComplexTest;
CPPUNIT_TEST_SUITE_REGISTRATION( ComplexTest );
class ComplexTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ComplexTest );
CPPUNIT_TEST( testConstructor_TakesValues );
CPPUNIT_TEST( testDefaultConstructor_InitAsZero );
CPPUNIT_TEST( testSetImag );
CPPUNIT_TEST( testSetReal );
CPPUNIT_TEST( testInequality_WithDifferentValues );
CPPUNIT_TEST( testStreamInsertion );
CPPUNIT_TEST( testStreamExtraction );
CPPUNIT_TEST( testStreamExtraction_WithSpacesToBeIgnored );
CPPUNIT_TEST( testStreamExtraction_WithADifferentStartToken );
CPPUNIT_TEST( testStreamExtraction_WithADifferentEndToken );
CPPUNIT_TEST_SUITE_END();
public:
/// Common initialization, executed before each test method
void setUp() { }
/// Common clean up, executed after each test method
void tearDown() { }
private:
void testConstructor_TakesValues()
{
CLAM::Complex aComplex(3.0, 2.0);
CPPUNIT_ASSERT_EQUAL( CLAM::TData(3.0), aComplex.Real());
CPPUNIT_ASSERT_EQUAL( CLAM::TData(2.0), aComplex.Imag());
}
void testDefaultConstructor_InitAsZero()
{
CLAM::Complex zeroComplex(0.0, 0.0);
CLAM::Complex aDefaultConstructedComplex;
CPPUNIT_ASSERT_EQUAL(aDefaultConstructedComplex, zeroComplex);
}
void testInequality_WithDifferentValues()
{
CLAM::Complex pureRealUnitComplex(1.0, 0.0);
CLAM::Complex pureImagUnitComplex(0.0, 1.0);
CPPUNIT_ASSERT(pureImagUnitComplex != pureRealUnitComplex);
}
void testSetImag()
{
CLAM::Complex aComplex(3.0, 2.0);
aComplex.SetImag(4.3);
CPPUNIT_ASSERT_EQUAL(CLAM::Complex(3.0,4.3), aComplex);
}
void testSetReal()
{
CLAM::Complex aComplex(3.0, 2.0);
aComplex.SetReal(4.3);
CPPUNIT_ASSERT_EQUAL(CLAM::Complex(4.3,2.0), aComplex);
}
void testStreamInsertion()
{
std::stringstream s;
CLAM::Complex complex(1.453,3.454);
std::string expectedString("{1.453 3.454i}");
s << complex << std::flush;
CPPUNIT_ASSERT_EQUAL(expectedString, s.str());
}
void testStreamExtraction()
{
CLAM::Complex toBeModified(1,3);
std::string inputString("{5.4 7.4i}");
CLAM::Complex expected( CLAM::TData(5.4), CLAM::TData(7.4) );
std::stringstream ss(inputString);
ss >> toBeModified;
CPPUNIT_ASSERT_EQUAL(expected, toBeModified);
}
void testStreamExtraction_WithSpacesToBeIgnored()
{
CLAM::Complex toBeModified(1,3);
std::string inputString(" \n { \n 5.3 \n 7.3 i \t } ");
CLAM::Complex expected(5.3, 7.3);
std::stringstream ss(inputString);
ss >> toBeModified;
CPPUNIT_ASSERT_EQUAL(expected, toBeModified);
}
void testStreamExtraction_WithADifferentStartToken()
{
CLAM::Complex toBeModified(1.3,3.2);
CLAM::Complex expected (1.3,3.2);
std::string inputString("a{5.3 7.3i}");
std::stringstream ss(inputString);
ss >> toBeModified;
CPPUNIT_ASSERT_EQUAL(expected, toBeModified);
}
void testStreamExtraction_WithADifferentEndToken()
{
CLAM::Complex toBeModified(1.3,3.2);
CLAM::Complex expected (1.3,3.2);
std::string inputString("{5.3 7.3ia a");
std::stringstream ss(inputString);
ss >> toBeModified;
CPPUNIT_ASSERT_EQUAL(expected, toBeModified);
}
};
} // namespace CLAMTest
|