Use Vlinder::Atomics
[Arachnida.git] / tests / lib / Spin / Connector.h
blobd73942d9f2845b7df1dcf5090cd45df3a3b2c0f1
1 #ifndef _tests_spin_private_connector_h
2 #define _tests_spin_private_connector_h
4 #include <cppunit/extensions/HelperMacros.h>
6 namespace Tests
8 namespace Spin
10 namespace Private
12 class Connector : public CPPUNIT_NS::TestFixture
14 CPPUNIT_TEST_SUITE( Connector );
15 CPPUNIT_TEST( tryCreateInstance );
16 CPPUNIT_TEST( tryCreateHTTPConnectionToLandheerCieslakDotCom );
17 CPPUNIT_TEST( tryCreateHTTPSConnectionToLandheerCieslakDotCom );
18 CPPUNIT_TEST_SUITE_END();
20 public:
21 virtual void setUp();
22 virtual void tearDown();
24 protected:
25 void tryCreateInstance();
26 void tryCreateHTTPConnectionToLandheerCieslakDotCom();
27 void tryCreateHTTPSConnectionToLandheerCieslakDotCom();
29 private:
35 #endif