summaryrefslogtreecommitdiff
path: root/libs/ardour/test/sha1_test.h
blob: d2fe6d5d6a0291c0f7ba63052c2235c55e9e401c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <sigc++/sigc++.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class Sha1Test : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (Sha1Test);
	CPPUNIT_TEST (basicTest);
	CPPUNIT_TEST_SUITE_END ();

public:
	void setUp () {}
	void tearDown () {}

	void basicTest ();
};