--- /dev/null
+#include "squid.h"
+#include <stdexcept>
+
+#include "testBoilerplate.h"
+
+CPPUNIT_TEST_SUITE_REGISTRATION( testBoilerplate );
+
+
+void
+testBoilerplate::testDemonstration()
+{
+ CPPUNIT_ASSERT(0 == 0);
+}
--- /dev/null
+
+#ifndef SQUID_SRC_TEST_BOILDERPLATE_H
+#define SQUID_SRC_TEST_BOILDERPLATE_H
+
+#include <cppunit/extensions/HelperMacros.h>
+
+/*
+ * demonstration test file, as new idioms are made they will
+ * be shown in the testBoilerplate source.
+ */
+
+class testBoilerplate : public CPPUNIT_NS::TestFixture
+{
+ CPPUNIT_TEST_SUITE( testBoilerplate );
+ /* note the statement here and then the actual prototype below */
+ CPPUNIT_TEST( testDemonstration );
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+
+protected:
+ void testDemonstration();
+};
+
+#endif /* SQUID_SRC_TEST_BOILDERPLATE_H */
+
--- /dev/null
+/* This test tests that the header below can be processed on its own with
+ * no other #includes. Dont add any!
+ */
+#include "ACL.h"
--- /dev/null
+/* This test tests that the header below can be processed on its own with
+ * no other #includes. Dont add any!
+ */
+#include "HttpHeader.h"
--- /dev/null
+/* This test tests that the header below can be processed on its own with
+ * no other #includes. Dont add any!
+ */
+#include "HttpHeaderRange.h"
--- /dev/null
+/* This test tests that the header below can be processed on its own with
+ * no other #includes. Dont add any!
+ */
+#include "HttpReply.h"
--- /dev/null
+/* This test tests that the header below can be processed on its own with
+ * no other #includes. Dont add any!
+ */
+#include "dlink.h"