Ignore:
Timestamp:
May 18, 2010, 3:20:52 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
108d38
Parents:
7a6fd9
Message:

"-e <db path>" not necessary anymore.

Removed necessity of specifying path to databases (this was one check of molecuilder/test/testsuite.at which cannot be fulfilled anymore with boost::program_options)
For this to work a great number of small changes have been necessary:

class periodentafel:

  • all .db files merged into const char * arrays in elements_db.cpp
  • periodentafel rewritten:
  • FindElement(), AskElement() and EnterElement return element * const instead of const element * (i.e. the contents of the pointer is const (the element) not the pointer itself which is very vexatious (i.e. FindElement() yields const element * which can subsequently not be used for RemoveElement(), ...)
  • parsedElems is not needed anymore. Instead we operate on map elements directly
  • new unittest periodentafelTest which is made friend of periodentafel to be able to access private loading functions directly

A number of unit tests had to be changed (all that create elements during setUp() which is now unnecessary)

Some of the analysis_bonds function's signatures were changed in the process:

Finally, the respective tests are removed from molecuilder/tests/testsuite.at.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/unittests/ParserUnitTest.cpp

    r7a6fd9 r06f141  
    3131
    3232void ParserUnitTest::setUp() {
    33   element* oxygen = new element();
    34   oxygen->symbol[0] = 'O';
    35   oxygen->Z = 8;
    36   World::getInstance().getPeriode()->AddElement(oxygen);
    37 
    38   element* hydrogen = new element();
    39   hydrogen->symbol[0] = 'H';
    40   hydrogen->Z = 1;
    41   World::getInstance().getPeriode()->AddElement(hydrogen);
     33  World::getInstance();
    4234}
    4335
Note: See TracChangeset for help on using the changeset viewer.