search_unittest.cc 530 B

1234567891011121314151617181920
  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. #include "components/search/search.h"
  5. #include "build/build_config.h"
  6. #include "testing/gtest/include/gtest/gtest.h"
  7. namespace search {
  8. #if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
  9. TEST(SearchTest, InstantExtendedAPIEnabled) {
  10. EXPECT_TRUE(IsInstantExtendedAPIEnabled());
  11. }
  12. #endif // !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
  13. } // namespace search