aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-09 14:37:57 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-09 19:00:00 -0200
commitf59e7ee17f8be5d29be464e56c0cf901b8e3f023 (patch)
treebdde53ec5186af71ecf5c76371d4a3f83e185d09 /tests
parentebf9aed32e291bb832fa59fa8dd6f17fe004e4e2 (diff)
Remove debug output from unit test.
Diffstat (limited to 'tests')
-rw-r--r--tests/testaddfunction.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/testaddfunction.cpp b/tests/testaddfunction.cpp
index e3472c390..b1c0aca8d 100644
--- a/tests/testaddfunction.cpp
+++ b/tests/testaddfunction.cpp
@@ -301,11 +301,10 @@ void TestAddFunction::testAddStaticFunction()
</add-function>\
</value-type>\
</typesystem>";
- TestUtil t(cppCode, xmlCode, false);
+ TestUtil t(cppCode, xmlCode);
AbstractMetaClassList classes = t.builder()->classes();
AbstractMetaClass* classA = classes.findClass("A");
QVERIFY(classA);
- qDebug() << classes[0]->name();
const AbstractMetaFunction* addedFunc = classA->findFunction("func");
QVERIFY(addedFunc);
QVERIFY(addedFunc->isStatic());