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 /chrome/service | |
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
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/service_process_unittest.cc | 9 |
1 files changed, 9 insertions, 0 deletions
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. +} |