| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "services/service_manager/runner/host/in_process_native_runner.h" | |
| 6 | |
| 7 #include "testing/gtest/include/gtest/gtest.h" | |
| 8 | |
| 9 namespace service_manager { | |
| 10 | |
| 11 TEST(InProcessNativeRunnerTest, NotStarted) { | |
| 12 InProcessNativeRunner runner; | |
| 13 // Shouldn't crash or DCHECK on destruction. | |
| 14 } | |
| 15 | |
| 16 } // namespace service_manager | |
| OLD | NEW |