~n-muench/+junk/podofo

« back to all changes in this revision

Viewing changes to test/unit/PageTest.h

  • Committer: Nate Muench
  • Date: 2011-01-06 01:07:46 UTC
  • Revision ID: nowiwilldestroyabydos@gmail.com-20110106010746-aaz6xwp0pcxzj3ff
Initial Import, Version 0.8.0 SVN from Maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009 by Dominik Seichter                                *
 
3
 *   domseichter@web.de                                                    *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU Library General Public License as       *
 
7
 *   published by the Free Software Foundation; either version 2 of the    *
 
8
 *   License, or (at your option) any later version.                       *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU Library General Public     *
 
16
 *   License along with this program; if not, write to the                 *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef _PAGE_TEST_H_
 
22
#define _PAGE_TEST_H_
 
23
 
 
24
#include <cppunit/extensions/HelperMacros.h>
 
25
 
 
26
namespace PoDoFo {
 
27
class PdfPage;
 
28
};
 
29
 
 
30
/** This test tests the class PdfPagesTree
 
31
 */
 
32
class PageTest : public CppUnit::TestFixture
 
33
{
 
34
  CPPUNIT_TEST_SUITE( PageTest );
 
35
  CPPUNIT_TEST( testEmptyContents );
 
36
  CPPUNIT_TEST_SUITE_END();
 
37
 
 
38
 public:
 
39
  void setUp();
 
40
  void tearDown();
 
41
 
 
42
  void testEmptyContents();
 
43
};
 
44
 
 
45
#endif // _PAGE_TEST_H_
 
46
 
 
47