![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00012 using namespace std; 00013 00014 #ifndef IOSTREAM 00015 #define IOSTREAM //!<Inclusion guard 00016 #include <iostream> 00017 #endif 00018 00019 #ifndef ASSERT_H 00020 #define ASSERT_H //!<Inclusion guard 00021 #include <assert.h> 00022 #endif 00023 00024 #include "Dataset.h" 00025 #include "GenericUnitTest.h" 00026 00027 #ifndef DATASET_TEST 00028 #define DATASET_TEST //!<Inclusion guard 00029 00033 class Dataset_TEST : public GenericUnitTest 00034 { 00035 public: 00036 int runUnitTests() const; 00037 protected: 00038 bool Dataset_ConstructsCorrectly_AssertTrue() const; 00039 bool Dataset_LoadsDatasetCorrectly_AssertTrue() const; 00040 bool Dataset_LoadsMoreRecordTypesCorrectly_AssertTrue() const; 00041 bool Dataset_CreatesCorrectBetaRecords_AssertTrue() const; 00042 }; 00043 #endif