mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-15 04:07:17 +01:00
39 lines
593 B
C
39 lines
593 B
C
|
//
|
||
|
// SHA1EngineTest.h
|
||
|
//
|
||
|
// Definition of the SHA1EngineTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef SHA1EngineTest_INCLUDED
|
||
|
#define SHA1EngineTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class SHA1EngineTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
SHA1EngineTest(const std::string& name);
|
||
|
~SHA1EngineTest();
|
||
|
|
||
|
void testSHA1();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // SHA1EngineTest_INCLUDED
|