~ubuntu-branches/ubuntu/karmic/kdevelop/karmic

« back to all changes in this revision

Viewing changes to languages/cpp/cppduchain/tests/test_duchain.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-06-28 20:48:13 UTC
  • mfrom: (1.1.12 upstream) (2.3.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20090628204813-m6qlb9e92ig9h04m
Tags: 4:3.9.94-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - Conflict/replace -kde4 packages
  - Remove gdb from recommends, version >= 6.8.50 is not yet in Ubuntu

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
  void testTemplateFunctions();
90
90
  void testTypedefUses();
91
91
  void testTemplateReference();
 
92
  void testSimplifiedTypeString();
 
93
  void testSourceCodeInsertion();
92
94
  void testTemplates();
93
95
  void testTemplates2();
94
96
  void testTemplates3();
 
97
  void testTemplates4();
95
98
  void testTemplatesRebind();
96
99
  void testTemplatesRebind2();
97
100
  void testTemplateDefaultParameters();
119
122
  void testTemplateRecursiveInstantiation();
120
123
  void testTemplateInternalSearch();
121
124
  void testStringSets();
 
125
  void testAssignedContexts();
122
126
  void testTryCatch();
123
127
  void testIndexedStrings();
124
128
  void testEnum();
126
130
  void testConstructorOperatorUses();
127
131
  void testSizeofUse();
128
132
  void testDefinitionUse();
 
133
  void testOperatorUses();
129
134
  void testImportStructure();
130
135
  void testImportCache();
131
136
  void testDeclareSubClass();
171
176
  Q_DECLARE_FLAGS(DumpAreas, DumpArea)
172
177
 
173
178
private:
174
 
  KDevelop::TopDUContext* parse(const QByteArray& unit, DumpAreas dump = static_cast<DumpAreas>(DumpAST | DumpDUChain | DumpType), KDevelop::TopDUContext* update = 0);
 
179
  KDevelop::TopDUContext* parse(const QByteArray& unit, DumpAreas dump = static_cast<DumpAreas>(DumpAST | DumpDUChain | DumpType),
 
180
                                 KDevelop::TopDUContext* update = 0, bool keepAst = false);
175
181
 
176
182
  // Parser
177
183
  Control control;