1//
2// PDFTest.h
3//
4// Definition of the PDFTest class.
5//
6// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef PDFTest_INCLUDED
14#define PDFTest_INCLUDED
15
16
17#include "Poco/PDF/PDF.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class PDFTest: public CppUnit::TestCase
22{
23public:
24 PDFTest(const std::string& name);
25 ~PDFTest();
26
27 void testDocument();
28 void testPage();
29 void testImage();
30 void testFont();
31 void testEncoding();
32 void testOutline();
33 void testDestination();
34 void testAnnotation();
35
36 void setUp();
37 void tearDown();
38
39 static CppUnit::Test* suite();
40};
41
42
43#endif // PDFTest_INCLUDED
44