Added more Age-class tests

This commit is contained in:
Michael Mandl 2018-11-25 14:30:45 +01:00
parent 09f8fa4faf
commit 220f92453d
2 changed files with 17 additions and 6 deletions

View file

@ -4,8 +4,8 @@
#include <sstream>
Age::Age(unsigned int years, unsigned int months)
: m_years(years)
, m_months(months)
: m_years(years)
, m_months(months)
{
}
@ -37,7 +37,7 @@ Age::Age(const QDate &birth, const QDate &reference)
m_years = years;
m_months = months;
}
bool Age::operator<(const Age &cmp) const
{
if (m_years == cmp.m_years)
@ -47,7 +47,7 @@ bool Age::operator<(const Age &cmp) const
return m_years < cmp.m_years;
}
unsigned int Age::years() const
{
return m_years;
@ -57,7 +57,7 @@ unsigned int Age::months() const
{
return m_months;
}
std::string Age::toString() const
{
std::ostringstream result;