![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00013 #ifndef IOSTREAM 00014 #define IOSTREAM 00015 #include <iostream> 00016 #endif 00017 00018 #ifndef ASSERT_H 00019 #define ASSERT_H 00020 #include <assert.h> 00021 #endif 00022 00023 #ifndef MAP 00024 #define MAP 00025 #include <map> 00026 #endif 00027 00028 #include "ENSDF.h" 00029 #include "GenericUnitTest.h" 00030 00031 using namespace std; 00032 00033 #ifndef ENSDF_TEST_H 00034 #define ENSDF_TEST_H //!<Inclusion guard 00035 00039 class ENSDF_TEST : public GenericUnitTest 00040 { 00041 public: 00042 int runUnitTests() const; 00043 protected: 00044 bool ENSDF_CheckIfConstructsCorrectly_AssertTrue() const; 00045 bool ENSDF_ReadsCorrectNumberOfIsotopes_AssertTrue() const; 00046 bool ENSDF_PassesDataCorrectlyToSubRoutines_AssertTrue() const; 00047 }; 00048 #endif