File: Test_SHATumbler.h

package info (click to toggle)
libcommoncpp2 1.5.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,732 kB
  • ctags: 3,544
  • sloc: cpp: 28,089; sh: 9,512; ansic: 1,118; makefile: 319; xml: 5
file content (20 lines) | stat: -rw-r--r-- 437 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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);
  }
};