source: src/Element/unittests/PeriodentafelUnitTest.hpp@ 220d2c

Action_Thermostats Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps
Last change on this file since 220d2c was 592be9, checked in by Frederik Heber <heber@…>, 13 years ago

Moved unitests on Element... into subfolder src/Element/unittests.

  • new Makefile is included in src/unitests/Makefile.am.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 * PeriodentafelUnitTest.hpp
3 *
4 * Created on: May 18, 2010
5 * Author: heber
6 */
7
8#ifndef PERIODENTAFELUNITTEST_HPP_
9#define PERIODENTAFELUNITTEST_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16
17#include <cppunit/extensions/HelperMacros.h>
18
19class element;
20class periodentafel;
21
22/********************************************** Test classes **************************************/
23
24class periodentafelTest : public CppUnit::TestFixture
25{
26 CPPUNIT_TEST_SUITE( periodentafelTest) ;
27 CPPUNIT_TEST ( AddRemoveTest );
28 CPPUNIT_TEST ( LoadStoreTest );
29 CPPUNIT_TEST ( ComparisonTest );
30 CPPUNIT_TEST ( SerializeTest );
31 CPPUNIT_TEST_SUITE_END();
32
33public:
34 void setUp();
35 void tearDown();
36 void AddRemoveTest();
37 void LoadStoreTest();
38 void ComparisonTest();
39 void SerializeTest();
40
41private:
42
43 const element *hydrogen;
44 const element *carbon;
45 periodentafel *tafel;
46
47};
48
49std::string gatherUndoInformation(const periodentafel &periode);
50
51
52#endif /* PERIODENTAFELUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.