]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/testBoilerplate.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / testBoilerplate.cc
1 #define SQUID_UNIT_TEST 1
2
3 #include "squid.h"
4 #include "testBoilerplate.h"
5
6 #if HAVE_STDEXCEPT
7 #include <stdexcept>
8 #endif
9
10 CPPUNIT_TEST_SUITE_REGISTRATION( testBoilerplate );
11
12 void
13 testBoilerplate::testDemonstration()
14 {
15 CPPUNIT_ASSERT(0 == 0);
16 }