// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/scoped_native_library.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" #if BUILDFLAG(IS_WIN) #include "base/files/file_path.h" #include "base/strings/utf_string_conversions.h" #endif namespace base { // Tests whether or not a function pointer retrieved via ScopedNativeLibrary // is available only in a scope. TEST(ScopedNativeLibrary, Basic) { … } } // namespace base