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
|
/*
This file is part of the kcalcore library.
SPDX-FileCopyrightText: 2004 Till Adam <adam@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef TESTINCIDENCEGENERATOR_H
#define TESTINCIDENCEGENERATOR_H
#include "../event.h"
#include "../journal.h"
#include "../todo.h"
using namespace KCalendarCore;
static Event *makeTestEvent()
{
Event *event = new Event();
event->setSummary("Test Event");
event->recurrence()->setDaily(2);
event->recurrence()->setDuration(3);
return event;
}
static Todo *makeTestTodo()
{
Todo *todo = new Todo();
todo->setSummary("Test Todo");
todo->setPriority(5);
return todo;
}
static Journal *makeTestJournal()
{
Journal *journal = new Journal();
journal->setSummary("Test Journal");
return journal;
}
#endif
|