summaryrefslogtreecommitdiffstats
path: root/kunittest/example/module
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kunittest/example/module
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kunittest/example/module')
-rw-r--r--kunittest/example/module/sampleextra.cpp2
-rw-r--r--kunittest/example/module/samplemodule2.cpp8
-rw-r--r--kunittest/example/module/sampletests.cpp12
-rw-r--r--kunittest/example/module/sampletests.h2
4 files changed, 12 insertions, 12 deletions
diff --git a/kunittest/example/module/sampleextra.cpp b/kunittest/example/module/sampleextra.cpp
index 38c49448..fa17aa6c 100644
--- a/kunittest/example/module/sampleextra.cpp
+++ b/kunittest/example/module/sampleextra.cpp
@@ -33,5 +33,5 @@ void SomeExtraTester::allTests()
{
kdDebug() << "Debug output belonging to SomeExtraTester." << endl;
- CHECK( QString("Extra") , QString("Extra") );
+ CHECK( TQString("Extra") , TQString("Extra") );
}
diff --git a/kunittest/example/module/samplemodule2.cpp b/kunittest/example/module/samplemodule2.cpp
index 87efde28..672ec08a 100644
--- a/kunittest/example/module/samplemodule2.cpp
+++ b/kunittest/example/module/samplemodule2.cpp
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <kdebug.h>
#include <kunittest/runner.h>
@@ -40,7 +40,7 @@ KUNITTEST_MODULE_REGISTER_TESTER( SomeSampleTester )
void SimpleSampleTester::allTests()
{
kdDebug() << "Debug output belonging to SimpleSampleTester." << endl;
- CHECK( QString("SimpleSample") , QString("SimpleSample") );
+ CHECK( TQString("SimpleSample") , TQString("SimpleSample") );
// operator == is used, so this can't work...
//XFAIL( "SimpleSample" , "SampleSimple" );
@@ -55,7 +55,7 @@ void SomeSampleTester::allTests()
kdDebug() << "Checking operator precedences." << endl;
CHECK( 2.0 * 3.0 / 2.0 * 4.0 / 2.0 , 6.0 );
- QStringList testList;
+ TQStringList testList;
testList << "one" << "two";
- CHECK( testList.count() , (QStringList::size_type) 2 );
+ CHECK( testList.count() , (TQStringList::size_type) 2 );
}
diff --git a/kunittest/example/module/sampletests.cpp b/kunittest/example/module/sampletests.cpp
index 3b253e55..89e7516a 100644
--- a/kunittest/example/module/sampletests.cpp
+++ b/kunittest/example/module/sampletests.cpp
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <kdebug.h>
#include <kunittest/runner.h>
@@ -35,7 +35,7 @@
void SlotSampleTester::setUp()
{
kdDebug() << "setUp" << endl;
- m_str = new QString("setUp str");
+ m_str = new TQString("setUp str");
}
void SlotSampleTester::tearDown()
@@ -56,7 +56,7 @@ void SlotSampleTester::testSlot()
CHECK( test() , true);
CHECK( "test" , "test");
kdDebug() << "Checking if m_str is initialized correctly." << endl;
- CHECK( *m_str , QString("setUp str") );
+ CHECK( *m_str , TQString("setUp str") );
}
void SlotSampleTester::testSlot2()
@@ -72,10 +72,10 @@ void SomeSampleTester::allTests()
kdDebug() << "Checking operator precedences." << endl;
CHECK( 2.0 * 3.0 / 2.0 * 4.0 / 2.0 , 6.0 );
- QStringList testList;
+ TQStringList testList;
testList << "one" << "two";
- CHECK( testList.count() , (QStringList::size_type) 2 );
- CHECK( testList.count()*2 , (QStringList::size_type) 4 );
+ CHECK( testList.count() , (TQStringList::size_type) 2 );
+ CHECK( testList.count()*2 , (TQStringList::size_type) 4 );
}
#include "sampletests.moc"
diff --git a/kunittest/example/module/sampletests.h b/kunittest/example/module/sampletests.h
index 63ff6e44..3cd30211 100644
--- a/kunittest/example/module/sampletests.h
+++ b/kunittest/example/module/sampletests.h
@@ -41,7 +41,7 @@ public slots:
private:
bool test();
- QString *m_str;
+ TQString *m_str;
};
class SomeSampleTester : public KUnitTest::Tester