ffa4f5442f2fe43d688dd3789670894477329ee5
[gssweb.git] / json_gssapi / test / NameCacheTest.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 NAMECACHETEST_H
9 #define NAMECACHETEST_H
10
11 #include <cppunit/TestFixture.h>
12 #include <cppunit/extensions/HelperMacros.h>
13
14 class NameCacheTest : public CppUnit::TestFixture
15 {
16   CPPUNIT_TEST_SUITE( NameCacheTest );
17   CPPUNIT_TEST( testStore );
18 //   CPPUNIT_TEST( testStoreWithKey );
19 //   CPPUNIT_TEST( testRetrieve );
20   CPPUNIT_TEST_SUITE_END();
21
22 public:
23     virtual void setUp();
24     virtual void tearDown();
25     
26     void testStore();
27 //     void testStoreWithKey();
28 //     void testRetrieve();
29 };
30
31 #endif // NAMECACHETEST_H
32