0d73b18d22f7c07845e09c092c35d7f883eb57da
[gssweb.git] / json_gssapi / test / datamodel / GSSBufferTest.h
1 /*
2  * Copyright (c) 2014 <copyright holder> <email>
3  *
4  * For license details, see the LICENSE file in the root of this project.
5  *
6  */
7
8 #ifndef GSSBUFFERTEST_H
9 #define GSSBUFFERTEST_H
10
11 #include <cppunit/TestFixture.h>
12 #include <cppunit/extensions/HelperMacros.h>
13
14 class GSSBufferTest : public CppUnit::TestFixture
15 {
16   
17   CPPUNIT_TEST_SUITE( GSSBufferTest );
18   CPPUNIT_TEST( testStringConstructor );
19   CPPUNIT_TEST_SUITE_END();
20
21   
22 public:
23     virtual void setUp();
24     virtual void tearDown();
25     
26     virtual void testStringConstructor();
27 };
28
29 #endif // GSSBUFFERTEST_H