1//
2// X509CertificateTest.h
3//
4// $Id: //poco/1.4/NetSSL_OpenSSL/testsuite/src/X509CertificateTest.h#1 $
5//
6// Definition of the X509CertificateTest class.
7//
8// Copyright (c) 2017, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#ifndef X509CertificateTest_INCLUDED
16#define X509CertificateTest_INCLUDED
17
18
19#include "Poco/CppUnit/TestCase.h"
20
21
22class X509CertificateTest: public CppUnit::TestCase
23{
24public:
25 X509CertificateTest(const std::string& name);
26 ~X509CertificateTest();
27
28 void testVerify();
29
30 void setUp();
31 void tearDown();
32
33 static CppUnit::Test* suite();
34
35private:
36};
37
38
39#endif // X509CertificateTest_INCLUDED
40