~phablet-team/sync-monitor/trunk

« back to all changes in this revision

Viewing changes to tests/unittest/eds-helper-mock.h

  • Committer: Bileto Bot
  • Author(s): Renato Araujo Oliveira Filho
  • Date: 2016-07-01 02:14:41 UTC
  • mfrom: (37.3.61 sync-individual-sources)
  • Revision ID: ci-train-bot@canonical.com-20160701021441-su9ubhybvttesfqt
Remove syncevolution account config files if the account get removed.
Avoid create extra sources for accounts on syncevolution config.
Create a config for each google calendar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    Q_OBJECT
37
37
public:
38
38
    EdsHelperMock(QObject *parent = 0)
39
 
        : EdsHelper(parent, "memory", "memory")
 
39
        : EdsHelper(parent, "memory")
40
40
    {
41
41
        setEnabled(true);
42
42
    }
45
45
    QtOrganizer::QOrganizerManager *organizerEngine()
46
46
    { return m_organizerEngine; }
47
47
 
48
 
    QtContacts::QContactManager *contactEngine()
49
 
    { return m_contactEngine; }
50
 
 
51
48
    void trackCollectionFromItem(QtOrganizer::QOrganizerItem *item)
52
49
    { m_trackedItem = item; }
53
50