summaryrefslogtreecommitdiffstats
path: root/content/test/content_test_suite.h
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-19 20:56:03 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-19 20:56:03 +0000
commitc057241028c07254ec0852fb60331c4f5c09358b (patch)
tree8a1000f6e8a76099cbf4c1fee9db4527ca7b8b21 /content/test/content_test_suite.h
parenta0ce3284a4fb3aee664c8ad998fb6c4d4b8d0080 (diff)
downloadchromium_src-c057241028c07254ec0852fb60331c4f5c09358b.zip
chromium_src-c057241028c07254ec0852fb60331c4f5c09358b.tar.gz
chromium_src-c057241028c07254ec0852fb60331c4f5c09358b.tar.bz2
Start moving files to new content_unittests target.
BUG=90443 Review URL: http://codereview.chromium.org/7677003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/content_test_suite.h')
-rw-r--r--content/test/content_test_suite.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/content/test/content_test_suite.h b/content/test/content_test_suite.h
new file mode 100644
index 0000000..e6afe29
--- /dev/null
+++ b/content/test/content_test_suite.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_TEST_CONTENT_TEST_SUITE_H_
+#define CONTENT_TEST_CONTENT_TEST_SUITE_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "base/test/test_suite.h"
+
+class ContentTestSuite : public base::TestSuite {
+ public:
+ ContentTestSuite(int argc, char** argv);
+ virtual ~ContentTestSuite();
+
+ protected:
+ virtual void Initialize() OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(ContentTestSuite);
+};
+
+#endif // CONTENT_TEST_CONTENT_TEST_SUITE_H_