mirror of https://github.com/hmatuschek/libsdr
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
C++
22 lines
371 B
C++
#include "coretest.hh"
|
|
#include "coreutilstest.hh"
|
|
#include "unittest.hh"
|
|
#include "buffertest.hh"
|
|
#include <iostream>
|
|
|
|
using namespace sdr;
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
UnitTest::TestRunner runner(std::cout);
|
|
|
|
runner.addSuite(CoreTest::suite());
|
|
runner.addSuite(BufferTest::suite());
|
|
runner.addSuite(CoreUtilsTest::suite());
|
|
|
|
runner();
|
|
|
|
return 0;
|
|
}
|