![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00013 #ifndef ASSERT_H 00014 #define ASSERT_H//!<Inclusion guard. 00015 #include <assert.h> 00016 #endif 00017 00018 #ifndef IOSTREAM 00019 #define IOSTREAM//!<Inclusion guard. 00020 #include <iostream> 00021 #endif 00022 00023 #ifndef LIST 00024 #define LIST//!<Inclusion guard. 00025 #include <list> 00026 #endif 00027 00028 #ifndef STRING 00029 #define STRING//!<Inclusion guard. 00030 #include <string> 00031 #endif 00032 00033 #include "DataFileException.h" 00034 #include "GenericUnitTest.h" 00035 00036 using namespace std; 00037 00038 #ifndef DATAFILEEXCEPTION_TEST 00039 #define DATAFILEEXCEPTION_TEST //!<Inclusion guard. 00040 00044 class DataFileException_TEST : public GenericUnitTest 00045 { 00046 public: 00047 int runUnitTests() const; 00048 protected: 00049 bool DataFileException_ThrowsCorrectString_AssertTrue() const; 00050 }; 00051 #endif