blob: 923ffd1621b1450a41eae277a497e9837a2303be [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001// can't get this to work because the SHATumbler is not accessable from the dll
2#include <cppunit/extensions/HelperMacros.h>
3#include <cc++/config.h>
4#include <cc++/digest.h>
5#include <fstream>
6
7using namespace ost;
8
9class SHATumblerTest : public CppUnit::TestFixture
10{
11 CPPUNIT_TEST_SUITE(SHATumblerTest);
12 CPPUNIT_TEST(test);
13 CPPUNIT_TEST_SUITE_END();
14protected:
15public:
16 void test() {
17 SHATumbler<uint32> tumbler(1);
18 }
19};