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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2007 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#include "period.hpp"
#include "ql/time/period.hpp"
using namespace QuantLib;
using namespace boost::unit_test_framework;
void PeriodTest::testYearsMonthsAlgebra() {
BOOST_MESSAGE("Testing period algebra on years/months...");
Period OneYear(1, Years);
Period SixMonths(6, Months);
Period ThreeMonths(3, Months);
Integer n = 4;
if (OneYear/n!=ThreeMonths)
BOOST_ERROR("division error: " << OneYear << "/" << n <<
" not equal to " << ThreeMonths);
n = 2;
if (OneYear/n!=SixMonths)
BOOST_ERROR("division error: " << OneYear << "/" << n <<
" not equal to " << SixMonths);
Period sum=ThreeMonths;
sum+=SixMonths;
if (sum!=Period(9, Months))
BOOST_ERROR("sum error: " << ThreeMonths <<
" + " << SixMonths <<
" != " << Period(9, Months));
sum+=OneYear;
if (sum!=Period(21, Months))
BOOST_ERROR("sum error: " << ThreeMonths <<
" + " << SixMonths <<
" + " << OneYear <<
" != " << Period(21, Months));
Period TwelveMonths(12, Months);
if (TwelveMonths.length()!=12)
BOOST_ERROR("normalization error: TwelveMonths.length()" <<
" is " << TwelveMonths.length() <<
" instead of 12");
if (TwelveMonths.units()!=Months)
BOOST_ERROR("normalization error: TwelveMonths.units()" <<
" is " << TwelveMonths.units() <<
" instead of " << Months);
Period NormalizedTwelveMonths(12, Months);
NormalizedTwelveMonths.normalize();
if (NormalizedTwelveMonths.length()!=1)
BOOST_ERROR("normalization error: NormalizedTwelveMonths.length()" <<
" is " << NormalizedTwelveMonths.length() <<
" instead of 1");
if (NormalizedTwelveMonths.units()!=Years)
BOOST_ERROR("normalization error: NormalizedTwelveMonths.units()" <<
" is " << NormalizedTwelveMonths.units() <<
" instead of " << Years);
}
void PeriodTest::testWeeksDaysAlgebra() {
BOOST_MESSAGE("Testing period algebra on weeks/days...");
Period TwoWeeks(2, Weeks);
Period OneWeek(1, Weeks);
Period ThreeDays(3, Days);
Period OneDay(1, Days);
Integer n = 2;
if (TwoWeeks/n!=OneWeek)
BOOST_ERROR("division error: " << TwoWeeks << "/" << n <<
" not equal to " << OneWeek);
n = 7;
if (OneWeek/n!=OneDay)
BOOST_ERROR("division error: " << OneWeek << "/" << n <<
" not equal to " << OneDay);
Period sum=ThreeDays;
sum+=OneDay;
if (sum!=Period(4, Days))
BOOST_ERROR("sum error: " << ThreeDays <<
" + " << OneDay <<
" != " << Period(4, Days));
sum+=OneWeek;
if (sum!=Period(11, Days))
BOOST_ERROR("sum error: " << ThreeDays <<
" + " << OneDay <<
" + " << OneWeek <<
" != " << Period(11, Days));
Period SevenDays(7, Days);
if (SevenDays.length()!=7)
BOOST_ERROR("normalization error: SevenDays.length()" <<
" is " << SevenDays.length() <<
" instead of 7");
if (SevenDays.units()!=Days)
BOOST_ERROR("normalization error: SevenDays.units()" <<
" is " << SevenDays.units() <<
" instead of " << Days);
Period NormalizedSevenDays(7, Days);
NormalizedSevenDays.normalize();
if (NormalizedSevenDays.length()!=1)
BOOST_ERROR("normalization error: NormalizedSevenDays.length()" <<
" is " << NormalizedSevenDays.length() <<
" instead of 1");
if (NormalizedSevenDays.units()!=Weeks)
BOOST_ERROR("normalization error: NormalizedSevenDays.units()" <<
" is " << NormalizedSevenDays.units() <<
" instead of " << Weeks);
}
test_suite* PeriodTest::suite() {
test_suite* suite = BOOST_TEST_SUITE("Period tests");
suite->add(BOOST_TEST_CASE(&PeriodTest::testYearsMonthsAlgebra));
suite->add(BOOST_TEST_CASE(&PeriodTest::testWeeksDaysAlgebra));
return suite;
}
|