Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision e7cfc35a

Von Christian Ehringfeld vor mehr als 8 Jahren hinzugefügt

  • ID e7cfc35a78ed46e4112ad150ce71ae532dad22fb
  • Vorgänger 6c14baaf
  • Nachfolger 23337ecc

extended test stuff

Unterschiede anzeigen:

tests/models.cpp
customPictureFileName = value;
}
QList<QSharedPointer<Group> > Person::getGroups() const {
QList<QSharedPointer<Group>> Person::getGroups() const {
return groups;
}
void Person::setGroups(const QList<QSharedPointer<Group> > &value) {
void Person::setGroups(const QList<QSharedPointer<Group>> &value) {
groups = value;
}
QList<QSharedPointer<Group> > Person::getMaintainedGroups() const {
QList<QSharedPointer<Group>> Person::getMaintainedGroups() const {
return maintainedGroups;
}
void Person::setMaintainedGroups(const QList<QSharedPointer<Group> > &value) {
void Person::setMaintainedGroups(const QList<QSharedPointer<Group>> &value) {
maintainedGroups = value;
}
......
leader = value;
}
QList<QSharedPointer<Person> > Group::getPersons() const {
QList<QSharedPointer<Person>> Group::getPersons() const {
return persons;
}
void Group::setPersons(const QList<QSharedPointer<Person> > &value) {
void Group::addPerson(const QSharedPointer<Person> &value) {
this->persons.append(value);
}
void Group::setPersons(const QList<QSharedPointer<Person>> &value) {
persons = value;
}
void Group::removePerson(const QSharedPointer<Person> &value) {
this->persons.removeOne(value);
}
double Article::getPrice() const
{
double Article::getPrice() const {
return price;
}
void Article::setPrice(double value)
{
void Article::setPrice(double value) {
price = value;
}
QString Article::getName() const
{
QString Article::getName() const {
return name;
}
void Article::setName(const QString &value)
{
void Article::setName(const QString &value) {
name = value;
}
Article::~Article() {
}
Article::Article() {
......
this->price = price;
this->name = name;
}
QList<CuteEntityManager::ValidationRule> Person::validationRules() const {
QList<CuteEntityManager::ValidationRule> rules =
QList<CuteEntityManager::ValidationRule>();
rules.append(ValidationRule("length", {"firstName", "familyName"}, "min", 2));
QList<Param> params = {Param("past"), Param("min", QDate(1970, 1, 1))};
rules.append(ValidationRule("date", "birthday", params));
return rules;
}

Auch abrufbar als: Unified diff