mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
99 lines
1.4 KiB
C++
99 lines
1.4 KiB
C++
//
|
|
// PDFTest.cpp
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "PDFTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
PDFTest::PDFTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
PDFTest::~PDFTest()
|
|
{
|
|
}
|
|
|
|
|
|
void PDFTest::testDocument()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testPage()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testImage()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testFont()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testEncoding()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testOutline()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testDestination()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testAnnotation()
|
|
{
|
|
warn("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void PDFTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* PDFTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("PDFTest");
|
|
|
|
CppUnit_addTest(pSuite, PDFTest, testDocument);
|
|
CppUnit_addTest(pSuite, PDFTest, testPage);
|
|
CppUnit_addTest(pSuite, PDFTest, testImage);
|
|
CppUnit_addTest(pSuite, PDFTest, testFont);
|
|
CppUnit_addTest(pSuite, PDFTest, testEncoding);
|
|
CppUnit_addTest(pSuite, PDFTest, testOutline);
|
|
CppUnit_addTest(pSuite, PDFTest, testDestination);
|
|
CppUnit_addTest(pSuite, PDFTest, testAnnotation);
|
|
|
|
return pSuite;
|
|
}
|