Add abhijeet.k@samsung.com to AUTHORS list.
[chromium-blink-merge.git] / mojo / shell / in_process_native_runner_unittest.cc
blob28608c843e5d0447cb27b69bbe62b0f2cb0178b4
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.
5 #include "mojo/shell/in_process_native_runner.h"
7 #include "mojo/shell/context.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace mojo {
11 namespace shell {
13 TEST(InProcessNativeRunnerTest, NotStarted) {
14 Context context;
15 base::MessageLoop loop;
16 context.Init();
17 InProcessNativeRunner runner(&context);
18 context.Shutdown();
19 // Shouldn't crash or DCHECK on destruction.
22 } // namespace shell
23 } // namespace mojo