mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-26 20:03:10 +00:00
43 lines
562 B
C++
43 lines
562 B
C++
/*
|
|
* Test license header
|
|
* In two lines
|
|
*/
|
|
#include "testname.h"
|
|
|
|
void TestName::initTestCase()
|
|
{
|
|
// Called before the first testfunction is executed
|
|
}
|
|
|
|
void TestName::cleanupTestCase()
|
|
{
|
|
// Called after the last testfunction was executed
|
|
}
|
|
|
|
void TestName::init()
|
|
{
|
|
// Called before each testfunction is executed
|
|
}
|
|
|
|
void TestName::cleanup()
|
|
{
|
|
// Called after every testfunction
|
|
}
|
|
|
|
void TestName::firstTestCase()
|
|
{
|
|
|
|
}
|
|
|
|
void TestName::secondTestCase()
|
|
{
|
|
|
|
}
|
|
|
|
void TestName::thirdTestCase()
|
|
{
|
|
|
|
}
|
|
|
|
QTEST_MAIN(TestName);
|
|
#include "moc_testname.cpp"
|