]> git.donarmstrong.com Git - bamtools.git/blob - src/test/TestMain.cpp
Initial test suite commit
[bamtools.git] / src / test / TestMain.cpp
1
2 // GoogleTest
3 #include <gtest/gtest.h>
4
5 // BamTools unit tests
6 #include "test/api/BamAlignment/BamAlignmentDefaultTest.h"
7 #include "test/api/BamAlignment/BamAlignmentFlagTest.h"
8 #include "test/api/BamAux/BamAuxBamRegionTest.h"
9 #include "test/api/BamIndex/BamIndexFactoryTest.h"
10 #include "test/api/BamIndex/BamStandardIndexTest.h"
11 #include "test/api/BamMultiReader/BamMultiReaderFileOpsTest.h"
12 #include "test/api/BamReader/BamReaderFileOpsTest.h"
13 #include "test/api/SamHeader/SamHeaderValidatorTest.h"
14 #include "test/api/SamHeader/SamReadGroupDictionaryTest.h"
15 #include "test/api/SamHeader/SamSequenceDictionaryTest.h"
16
17 int main(int argc, char* argv[]) {
18     ::testing::InitGoogleTest(&argc, argv);
19     return RUN_ALL_TESTS();
20 }