diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 23:18:16 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 23:18:16 +0000 |
commit | dc7269d52ff9a8bec724f8548f93e7019ebbbabd (patch) | |
tree | 558241db7c0258f4c5feb119084824d9db63996e | |
parent | 4ee0bc31c1ad8203eb77136783132387bbc8abb0 (diff) | |
download | chromium_src-dc7269d52ff9a8bec724f8548f93e7019ebbbabd.zip chromium_src-dc7269d52ff9a8bec724f8548f93e7019ebbbabd.tar.gz chromium_src-dc7269d52ff9a8bec724f8548f93e7019ebbbabd.tar.bz2 |
Unit test stub for ServiceProcess
Adding ServiceProcessTest so I can add test for the service process.
TEST=This is a test dude!
BUG=none
Review URL: http://codereview.chromium.org/3081020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55312 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/chrome_tests.gypi | 1 | ||||
-rw-r--r-- | chrome/service/service_process_unittest.cc | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index e57f88c..e061810 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -1219,6 +1219,7 @@ 'renderer/spellchecker/spellcheck_worditerator_unittest.cc', 'renderer/translate_helper_unittest.cc', 'service/cloud_print/cloud_print_helpers_unittest.cc', + 'service/service_process_unittest.cc', 'test/browser_with_test_window_test.cc', 'test/browser_with_test_window_test.h', 'test/data/resource.rc', diff --git a/chrome/service/service_process_unittest.cc b/chrome/service/service_process_unittest.cc new file mode 100644 index 0000000..b3ba608 --- /dev/null +++ b/chrome/service/service_process_unittest.cc @@ -0,0 +1,9 @@ +// Copyright (c) 2010 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. + +#include "testing/gtest/include/gtest/gtest.h" + +TEST(ServiceProcessTest, Run) { + // TODO(hclam): Implement this test. +} |