1 // Copyright (c) 2013 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 "crazy_linker_globals.h" 6 7 #include <minitest/minitest.h> 8 9 #include "crazy_linker_system_mock.h" 10 11 namespace crazy { 12 TEST(Globals,Get)13TEST(Globals, Get) { 14 SystemMock sys; 15 ASSERT_TRUE(Globals::Get()); 16 ASSERT_TRUE(Globals::GetLibraries()); 17 ASSERT_TRUE(Globals::GetSearchPaths()); 18 ASSERT_TRUE(Globals::GetRDebug()); 19 } 20 21 } // namespace crazy 22