summaryrefslogtreecommitdiff
path: root/libs/ardour/test/sha1_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/test/sha1_test.h')
-rw-r--r--libs/ardour/test/sha1_test.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/libs/ardour/test/sha1_test.h b/libs/ardour/test/sha1_test.h
new file mode 100644
index 0000000000..d2fe6d5d6a
--- /dev/null
+++ b/libs/ardour/test/sha1_test.h
@@ -0,0 +1,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 ();
+};