TsDataSetType.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib 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 Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file TsDataSetType.h
22 
23  \brief Test suite for the DataSetType class.
24  */
25 
26 #ifndef __TERRALIB_UNITTEST_DATAACCESS_INTERNAL_DATASETTYPE_H
27 #define __TERRALIB_UNITTEST_DATAACCESS_INTERNAL_DATASETTYPE_H
28 
29 // STL
30 #include <string>
31 #include <vector>
32 
33 // cppUnit
34 #include <cppunit/extensions/HelperMacros.h>
35 
36 /*!
37  \class TsDataSetType
38 
39  \brief Test suite for the DataSetType class.
40 
41  This test suite will perform checks in the DataSetType class
42  without using any associated DataSource.
43  <br>
44  This test suite will check the following:
45  <ul>
46  <li>;</li>
47  <li>;</li>
48  <li>;</li>
49  <li>;</li>
50  <li>;</li>
51  </ul>
52  */
53 class TsDataSetType : public CPPUNIT_NS::TestFixture
54 {
55 // It registers this class as a Test Suit
57 
58 // It registers the class methods as Test Cases belonging to the suit
60  //add a new test case here...
62 
63  public:
64 
65 // It sets up context before running the test.
66  void setUp();
67 
68 // It cleann up after the test run.
69  void tearDown();
70 
71  protected:
72 
73 // Test Cases:
74 
75  /*! \brief Test Case: creating a DataSetType and checking all methods. */
77 
78 };
79 
80 #endif // __TERRALIB_UNITTEST_DATAACCESS_INTERNAL_DATASETTYPE_H
81 
CPPUNIT_TEST_SUITE(TsDataSetType)
Test suite for the DataSetType class.
Definition: TsDataSetType.h:53
CPPUNIT_TEST(tcCreateDataSetTypeAndChecks)
void tcCreateDataSetTypeAndChecks()
Test Case: creating a DataSetType and checking all methods.