source: src/Patterns/unittests/RegistryUnitTest.hpp@ 8e24ef

Last change on this file since 8e24ef was fe056c, checked in by Frederik Heber <heber@…>, 15 years ago

Implemented unit test for Registry pattern.

  • Library version is now 4:0:2, API version is still 1.0.7.
  • So far only empty test was present.
  • Property mode set to 100644
File size: 695 bytes
Line 
1/*
2 * RegistryUnitTest.hpp
3 *
4 * Created on: Oct 27, 2010
5 * Author: heber
6 */
7
8#ifndef REGISTRYUNITTEST_HPP_
9#define REGISTRYUNITTEST_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <cppunit/extensions/HelperMacros.h>
17
18class RegistryStub;
19
20/********************************************** Test classes **************************************/
21
22class RegistryTest : public CppUnit::TestFixture
23{
24 CPPUNIT_TEST_SUITE( RegistryTest) ;
25 CPPUNIT_TEST ( InOutCheck );
26 CPPUNIT_TEST_SUITE_END();
27
28public:
29 void setUp();
30 void tearDown();
31 void InOutCheck();
32
33private:
34 RegistryStub* registry;
35};
36
37#endif /* REGISTRYUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.