]> git.ipfire.org Git - thirdparty/squid.git/blame - compat/testPreCompiler.h
UnitTests: check precompiler is sane with our wrapping style.
[thirdparty/squid.git] / compat / testPreCompiler.h
CommitLineData
19ce1bfe
AJ
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
10class testPreCompiler : public CPPUNIT_NS::TestFixture
11{
12 CPPUNIT_TEST_SUITE( testPreCompiler );
13 CPPUNIT_TEST( testIfDef );
14 CPPUNIT_TEST_SUITE_END();
15
16protected:
17 void testIfDef();
18};
19
20#endif /* SQUID_COMPAT_TESTS_TESTPRECOMPILER_H */