~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to plugins/git/tests/gittest.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   This file was partly taken from KDevelop's cvs plugin                 *
 
3
 *   Copyright 2007 Robert Gruber <rgruber@users.sourceforge.net>          *
 
4
 *                                                                         *
 
5
 *   Adapted for Git                                                       *
 
6
 *   Copyright 2008 Evgeniy Ivanov <powerfox@kde.ru>                       *
 
7
 *                                                                         *
 
8
 *   This program is free software; you can redistribute it and/or         *
 
9
 *   modify it under the terms of the GNU General Public License as        *
 
10
 *   published by the Free Software Foundation; either version 2 of        *
 
11
 *   the License or (at your option) version 3 or any later version        *
 
12
 *   accepted by the membership of KDE e.V. (or its successor approved     *
 
13
 *   by the membership of KDE e.V.), which shall act as a proxy            *
 
14
 *   defined in Section 14 of version 3 of the license.                    *
 
15
 *                                                                         *
 
16
 *   This program is distributed in the hope that it will be useful,       *
 
17
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
18
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
19
 *   GNU General Public License for more details.                          *
 
20
 *                                                                         *
 
21
 *   You should have received a copy of the GNU General Public License     *
 
22
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
23
 ***************************************************************************/
 
24
 
 
25
#ifndef KDEVPLATFORM_PLUGIN_GIT_INIT_H
 
26
#define KDEVPLATFORM_PLUGIN_GIT_INIT_H
 
27
 
 
28
#include <QtCore/QObject>
 
29
#include <QtCore/QString>
 
30
 
 
31
class GitPlugin;
 
32
 
 
33
namespace KDevelop
 
34
{
 
35
    class TestCore;
 
36
}
 
37
 
 
38
class GitInitTest: public QObject
 
39
{
 
40
    Q_OBJECT
 
41
 
 
42
private:
 
43
    void repoInit();
 
44
    void addFiles();
 
45
    void commitFiles();
 
46
//     void cloneRepository();
 
47
//     void importTestData();
 
48
//     void checkoutTestData();
 
49
 
 
50
private slots:
 
51
    void init();
 
52
    void cleanup();
 
53
    void testInit();
 
54
    void testAdd();
 
55
    void testCommit();
 
56
    void testBranching();
 
57
    void testBranch(const QString &branchName);
 
58
    void revHistory();
 
59
    void testAnnotation();
 
60
    void testRemoveEmptyFolder();
 
61
    void testRemoveEmptyFolderInFolder();
 
62
    void testRemoveUnindexedFile();
 
63
    void testRemoveFolderContainingUnversionedFiles();
 
64
 
 
65
private:
 
66
    GitPlugin* m_plugin;
 
67
    void removeTempDirs();
 
68
};
 
69
 
 
70
#endif