]> git.ipfire.org Git - thirdparty/squid.git/blob - compat/testPreCompiler.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / compat / testPreCompiler.h
1 /*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_COMPAT_TESTS_TESTPRECOMPILER_H
10 #define SQUID_COMPAT_TESTS_TESTPRECOMPILER_H
11
12 #include <cppunit/extensions/HelperMacros.h>
13
14 /*
15 * Test the pre-compiler directives used within Squid code actually work.
16 */
17
18 class testPreCompiler : public CPPUNIT_NS::TestFixture
19 {
20 CPPUNIT_TEST_SUITE( testPreCompiler );
21 CPPUNIT_TEST( testIfDef );
22 CPPUNIT_TEST( testIfDefAnd );
23 CPPUNIT_TEST( testIfDefOr );
24 CPPUNIT_TEST_SUITE_END();
25
26 protected:
27 void testIfDef();
28 void testIfDefAnd();
29 void testIfDefOr();
30 };
31
32 #endif /* SQUID_COMPAT_TESTS_TESTPRECOMPILER_H */
33