~ubuntu-branches/ubuntu/utopic/kdevelop-php/utopic

« back to all changes in this revision

Viewing changes to duchain/tests/test_uses.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2010-01-17 17:10:22 UTC
  • Revision ID: james.westby@ubuntu.com-20100117171022-q2xlgd9ekewo2ijx
Tags: upstream-1.0.0~beta2
ImportĀ upstreamĀ versionĀ 1.0.0~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of KDevelop
 
2
    Copyright 2008 Niko Sams <niko.sams@gmail.com>
 
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 TESTUSES_H
 
20
#define TESTUSES_H
 
21
 
 
22
#include "duchain/tests/duchaintestbase.h"
 
23
 
 
24
namespace Php
 
25
{
 
26
class TestUses : public DUChainTestBase
 
27
{
 
28
    Q_OBJECT
 
29
 
 
30
public:
 
31
    TestUses();
 
32
 
 
33
private slots:
 
34
    void newObject();
 
35
    void functionCall();
 
36
    void memberFunctionCall();
 
37
    void memberVariable();
 
38
    void variable();
 
39
    void varInString();
 
40
    void memberVarInString();
 
41
    void memberFunctionInString();
 
42
    void variableTwoDeclarations();
 
43
    void variableTwoDeclarationsInFunction();
 
44
    void classExtends();
 
45
    void classImplements();
 
46
    void classImplementsMultiple();
 
47
    void interfaceExtends();
 
48
    void interfaceExtendsMultiple();
 
49
    void staticMemberFunctionCall();
 
50
    void staticMemberVariable();
 
51
    void constant();
 
52
    void classConstant();
 
53
    void classParent();
 
54
    void classSelf();
 
55
    void classThis();
 
56
    void objectWithClassName();
 
57
    void classAndConstWithSameName();
 
58
    void classAndFunctionWithSameName();
 
59
    void constAndVariableWithSameName();
 
60
    void functionAndClassWithSameName();
 
61
    void constantInClassMember();
 
62
    void useInAsignment();
 
63
    void foreachArray();
 
64
    void assignmentToMemberArray();
 
65
    void functionParamNewDeclaration();
 
66
    void catchClass();
 
67
    void variableRedeclaration();
 
68
    void caseInsensitiveFunction();
 
69
    void caseInsensitiveMethod();
 
70
    void caseInsensitiveClass();
 
71
    void functionUseBeforeDeclaration();
 
72
    void propertyAndMethodWithSameName();
 
73
    void nestedMethodCalls();
 
74
};
 
75
 
 
76
}
 
77
 
 
78
#endif