~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to akonadi/xml/tests/collection.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2008 Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Library General Public
 
6
    License version 2 as published by the Free Software Foundation.
 
7
 
 
8
    This library is distributed in the hope that it will be useful,
 
9
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
    Library General Public License for more details.
 
12
 
 
13
    You should have received a copy of the GNU Library General Public License
 
14
    along with this library; see the file COPYING.LIB.  If not, write to
 
15
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
    Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
#ifndef COLLECTIONTEST_H
 
20
#define COLLECTIONTEST_H
 
21
 
 
22
#include <QtCore/QObject>
 
23
#include <akonadi/collection.h>
 
24
 
 
25
using namespace Akonadi;
 
26
 
 
27
class CollectionTest : public QObject {
 
28
  Q_OBJECT
 
29
  private:
 
30
    void verifyCollection( const Collection::List &colist, int listPosition,
 
31
                           const QString &remoteId, const QString &name,
 
32
                           const QStringList &mimeType );
 
33
  private Q_SLOTS:
 
34
    void serializeCollection();
 
35
    void testBuildCollection();
 
36
};
 
37
 
 
38
#endif