1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/CONCEPT/classTest.h>
#include <BALLTestConfig.h>
///////////////////////////
#include <BALL/SOLVATION/pierottiCavFreeEnergyProcessor.h>
#include <BALL/FORMAT/HINFile.h>
#include <BALL/KERNEL/system.h>
#include <BALL/ENERGY/energyProcessor.h>
#include <BALL/STRUCTURE/fragmentDB.h>
///////////////////////////
START_TEST(PierottiCavFreeEnergyProcessor)
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
using namespace BALL;
CHECK(PierottiCavFreeEnergyProcessor::PierottiCavFreeEnergyProcessor())
PierottiCavFreeEnergyProcessor* proc = new PierottiCavFreeEnergyProcessor;
TEST_NOT_EQUAL(proc, 0)
TEST_EQUAL(proc->isValid(), true)
TEST_REAL_EQUAL(proc->getEnergy(), 0)
delete proc;
RESULT
CHECK(PierottiCavFreeEnergyProcessor::PierottiCavFreeEnergyProcessor(const PierottiCavFreeEnergyProcessor& proc))
HINFile f(BALL_TEST_DATA_PATH(methane.hin));
System S;
f >> S;
f.close();
PierottiCavFreeEnergyProcessor proc;
S.apply(proc);
PierottiCavFreeEnergyProcessor proc2(proc);
TEST_EQUAL((proc == proc2), true)
bool test = proc.isValid() == proc2.isValid();
TEST_EQUAL(test, true)
test = proc.getEnergy() == proc2.getEnergy();
TEST_EQUAL(test, true)
RESULT
CHECK(PierottiCavFreeEnergyProcessor::~PierottiCavFreeEnergyProcessor())
PierottiCavFreeEnergyProcessor* proc = new PierottiCavFreeEnergyProcessor;
delete proc;
RESULT
CHECK(PierottiCavFreeEnergyProcessor::clear())
PierottiCavFreeEnergyProcessor proc;
proc.clear();
RESULT
CHECK(PierottiCavFreeEnergyProcessor::PierottiCavFreeEnergyProcessor& operator = (const PierottiCavFreeEnergyProcessor& proc) + operator ==)
HINFile f(BALL_TEST_DATA_PATH(methane.hin));
System S;
f >> S;
f.close();
PierottiCavFreeEnergyProcessor proc;
S.apply(proc);
PierottiCavFreeEnergyProcessor proc2;
proc2 = proc;
TEST_EQUAL((proc == proc2), true)
bool test = proc.isValid() == proc2.isValid();
TEST_EQUAL(test, true)
test = proc.getEnergy() == proc2.getEnergy();
TEST_EQUAL(test, true)
RESULT
CHECK(PierottiCavFreeEnergyProcessor::start())
PierottiCavFreeEnergyProcessor proc;
TEST_EQUAL(proc.start(), true)
RESULT
CHECK(PierottiCavFreeEnergyProcessor / Methane)
PRECISION(0.05)
HINFile f(BALL_TEST_DATA_PATH(methane.hin));
System S;
f >> S;
f.close();
PierottiCavFreeEnergyProcessor proc;
S.apply(proc);
TEST_REAL_EQUAL(proc.getEnergy(),20.6908)
TEST_EQUAL(S.countAtoms(),5)
RESULT
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
END_TEST
|