1 | // |
2 | // PDFTest.cpp |
3 | // |
4 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
5 | // and Contributors. |
6 | // |
7 | // SPDX-License-Identifier: BSL-1.0 |
8 | // |
9 | |
10 | |
11 | #include "PDFTest.h" |
12 | #include "Poco/CppUnit/TestCaller.h" |
13 | #include "Poco/CppUnit/TestSuite.h" |
14 | |
15 | |
16 | PDFTest::PDFTest(const std::string& name): CppUnit::TestCase(name) |
17 | { |
18 | } |
19 | |
20 | |
21 | PDFTest::~PDFTest() |
22 | { |
23 | } |
24 | |
25 | |
26 | void PDFTest::testDocument() |
27 | { |
28 | fail("not implemented" ); |
29 | } |
30 | |
31 | |
32 | void PDFTest::testPage() |
33 | { |
34 | fail("not implemented" ); |
35 | } |
36 | |
37 | |
38 | void PDFTest::testImage() |
39 | { |
40 | fail("not implemented" ); |
41 | } |
42 | |
43 | |
44 | void PDFTest::testFont() |
45 | { |
46 | fail("not implemented" ); |
47 | } |
48 | |
49 | |
50 | void PDFTest::testEncoding() |
51 | { |
52 | fail("not implemented" ); |
53 | } |
54 | |
55 | |
56 | void PDFTest::testOutline() |
57 | { |
58 | fail("not implemented" ); |
59 | } |
60 | |
61 | |
62 | void PDFTest::testDestination() |
63 | { |
64 | fail("not implemented" ); |
65 | } |
66 | |
67 | |
68 | void PDFTest::testAnnotation() |
69 | { |
70 | fail("not implemented" ); |
71 | } |
72 | |
73 | |
74 | void PDFTest::setUp() |
75 | { |
76 | } |
77 | |
78 | |
79 | void PDFTest::tearDown() |
80 | { |
81 | } |
82 | |
83 | |
84 | CppUnit::Test* PDFTest::suite() |
85 | { |
86 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("PDFTest" ); |
87 | |
88 | CppUnit_addTest(pSuite, PDFTest, testDocument); |
89 | CppUnit_addTest(pSuite, PDFTest, testPage); |
90 | CppUnit_addTest(pSuite, PDFTest, testImage); |
91 | CppUnit_addTest(pSuite, PDFTest, testFont); |
92 | CppUnit_addTest(pSuite, PDFTest, testEncoding); |
93 | CppUnit_addTest(pSuite, PDFTest, testOutline); |
94 | CppUnit_addTest(pSuite, PDFTest, testDestination); |
95 | CppUnit_addTest(pSuite, PDFTest, testAnnotation); |
96 | |
97 | return pSuite; |
98 | } |
99 | |