mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-23 18:42:17 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
101 lines
1.4 KiB
C++
101 lines
1.4 KiB
C++
//
|
|
// PDFTest.cpp
|
|
//
|
|
// $Id: //poco/Main/PDF/testsuite/src/PDFTest.cpp#12 $
|
|
//
|
|
// 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()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testPage()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testImage()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testFont()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testEncoding()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testOutline()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testDestination()
|
|
{
|
|
fail("not implemented");
|
|
}
|
|
|
|
|
|
void PDFTest::testAnnotation()
|
|
{
|
|
fail("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;
|
|
}
|