00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TEST_AASORT_H_
00017 #define TEST_AASORT_H_
00018 #include <cppunit/extensions/HelperMacros.h>
00019 #include <cppunit/TestAssert.h>
00020 #include "baseTest.h"
00021 #include <amino/cstdatomic>
00022 #include <iostream>
00023
00024 using namespace amino;
00025
00026 namespace test{
00027
00028 class AASortTest :
00029 public CppUnit::TestFixture, public BaseTest<int> {
00030 CPPUNIT_TEST_SUITE(AASortTest);
00031 CPPUNIT_TEST(testAASort);
00032 CPPUNIT_TEST_SUITE_END();
00033
00034 public:
00035 AASortTest() {
00036 }
00037
00038 void setUp() {
00039 }
00040
00041 void reset() {
00042 }
00043
00044 void tearDown() {
00045 }
00046
00047 void testAASort();
00048 };
00049 }
00050 #endif