File: Test_SHATumbler.h

package info (click to toggle)
libcommoncpp2 1.7.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,060 kB
  • ctags: 3,614
  • sloc: cpp: 27,934; sh: 9,842; ansic: 1,123; makefile: 228; xml: 5
file content (19 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// can't get this to work because the SHATumbler is not accessable from the dll
#include <cppunit/extensions/HelperMacros.h>
#include <cc++/config.h>
#include <cc++/digest.h>
#include <fstream>

using namespace ost;

class SHATumblerTest : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE(SHATumblerTest);
  CPPUNIT_TEST(test);
  CPPUNIT_TEST_SUITE_END();
protected:
public:
  void test() {
	SHATumbler<uint32> tumbler(1);
  }
};