school/cs235/lab08/qstest.h

17 lines
367 B
C
Raw Normal View History

2016-04-06 20:46:10 -07:00
#ifndef __QSTEST_H__
#define __QSTEST_H__
#include "QSTestInterface.h"
#include "sorter.h"
class qstest : public QSTestInterface {
public:
sorter s;
bool testSortAll(QSInterface* test);
bool testSort(QSInterface* test);
bool testMedianOfThree(QSInterface* test);
bool testPartition(QSInterface* test);
bool testSwap(QSInterface* test);
};
#endif