]> git.ipfire.org Git - thirdparty/squid.git/blob - compat/testPreCompiler.h
Merge from trunk
[thirdparty/squid.git] / compat / testPreCompiler.h
1 #ifndef SQUID_COMPAT_TESTS_TESTPRECOMPILER_H
2 #define SQUID_COMPAT_TESTS_TESTPRECOMPILER_H
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6 /*
7 * Test the pre-compiler directives used within Squid code actually work.
8 */
9
10 class testPreCompiler : public CPPUNIT_NS::TestFixture
11 {
12 CPPUNIT_TEST_SUITE( testPreCompiler );
13 CPPUNIT_TEST( testIfDef );
14 CPPUNIT_TEST_SUITE_END();
15
16 protected:
17 void testIfDef();
18 };
19
20 #endif /* SQUID_COMPAT_TESTS_TESTPRECOMPILER_H */